Shorthands
You can specify some steps using a shorthand syntax. The following steps are currently supported:
login
Use
"login": true,
Or
{
"step": "login",
"username": "admin",
"password": "password"
}
plugins
(replaces the installPlugin step)
Use
"plugins": [
"hello-dolly",
"https://raw.githubusercontent.com/adamziel/blueprints/trunk/docs/assets/hello-from-the-dashboard.zip"
]
Or
[
{
"step": "installPlugin",
"pluginData": {
"resource": "wordpress.org/plugins",
"slug": "hello-dolly"
}
},
{
"step": "installPlugin",
"pluginData": {
"resource": "url",
"url": "https://raw.githubusercontent.com/adamziel/blueprints/trunk/docs/assets/hello-from-the-dashboard.zip"
}
}
]