Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
46 changes: 46 additions & 0 deletions assets/blueprints/blueprint.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
{
"$schema": "https://playground.wordpress.net/blueprint-schema.json",
"meta": {
"title": "Hello Dolly Demo",
"description": "Blueprint with demo for Hello Dolly plugin",
"author": "noahmobes",
"categories": ["Pulgins", "default"]
},
"login": true,
"landingPage": "/wp-admin/",
"siteOptions": {
"blogname": "Hello Dolly Demo",
"blogdescription": "A demo for the Hello Dolly plugin"
},
"steps": [
{
"step": "installTheme",
"themeData": {
"resource": "wordpress.org/themes",
"slug": "twentytwentyfive"
}
},
{
"step": "installPlugin",
"pluginData": {
"resource": "wordpress.org/plugins",
"slug": "hello-dolly"
},
"options": {
"activate": true
}
},
{
"step": "wp-cli",
"command": "wp post update 1 --post_title='Hello Dolly' --post_content='' --post_name='hello-dolly'"
},
{
"step": "wp-cli",
"command": "wp user update admin --display_name='Louis Armstrong'"
},
{
"step": "wp-cli",
"command": "wp comment delete 1 --force"
}
]
}