39 lines
778 B
JSON
39 lines
778 B
JSON
{
|
|
"$schema": "https://playground.wordpress.net/blueprint-schema.json",
|
|
"landingPage": "/wp-admin/network/",
|
|
"login": true,
|
|
"features": {
|
|
"networking": true
|
|
},
|
|
"steps": [
|
|
{
|
|
"step": "defineWpConfigConsts",
|
|
"consts": {
|
|
"WP_DEBUG": true
|
|
}
|
|
},
|
|
{
|
|
"step": "enableMultisite"
|
|
},
|
|
{
|
|
"step": "wp-cli",
|
|
"command": "wp site create --slug=testsite"
|
|
},
|
|
{
|
|
"step": "wp-cli",
|
|
"command": "wp plugin install plugin-toggle --activate-network"
|
|
},
|
|
{
|
|
"step": "installPlugin",
|
|
"pluginData": {
|
|
"resource": "wordpress.org/plugins",
|
|
"slug": "hello-dolly"
|
|
}
|
|
},
|
|
{
|
|
"step": "wp-cli",
|
|
"command": "wp plugin activate hello-dolly --network"
|
|
}
|
|
]
|
|
}
|