Skip to content

Instantly share code, notes, and snippets.

@erikyo
Created December 9, 2023 14:01
Show Gist options
  • Save erikyo/795746c96f422168121e47c2a876fb31 to your computer and use it in GitHub Desktop.
Save erikyo/795746c96f422168121e47c2a876fb31 to your computer and use it in GitHub Desktop.
wpmm wp-package.json template
{
"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