Created
December 9, 2023 14:01
-
-
Save erikyo/795746c96f422168121e47c2a876fb31 to your computer and use it in GitHub Desktop.
wpmm wp-package.json template
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "wordpress", | |
"wordpress": { | |
"version": null, | |
"language": "it_IT", | |
"config": { | |
"DB_NAME": "my_db_name", | |
"DB_USER": "my_db_username", | |
"DB_PASSWORD": "my_db_password", | |
"DB_HOST": "localhost", | |
"DB_CHARSET": "utf8", | |
"DB_COLLATE": "", | |
"table_prefix": "wp_", | |
"WP_DEBUG": true | |
} | |
}, | |
"database": { | |
"type": "mysql", | |
"backup-folder": "backups" | |
}, | |
"themes": [ | |
{ | |
"name": "modul-r", | |
"version": "1.4.4", | |
"source": "https://github.com/wp-blocks/modul-r.git" | |
} | |
], | |
"plugins": [ | |
{ | |
"name": "contact-form-7", | |
"version": "5.8.4" | |
}, | |
{ | |
"name": "cf7-antispam", | |
"version": "0.4.5", | |
"source": "https://github.com/wp-blocks/cf7-antispam/archive/refs/heads/main.zip" | |
} | |
], | |
"postInstall": [ | |
"wp cache flush", | |
"wp plugin install $(wp plugin list --field=name) --force" | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment