-
Notifications
You must be signed in to change notification settings - Fork 0
/
blueprint.json
60 lines (60 loc) · 1.61 KB
/
blueprint.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"$schema": "https://playground.wordpress.net/blueprint-schema.json",
"landingPage": "\/wp-admin\/plugins.php",
"preferredVersions": {
"php": "8.0",
"wp": "latest"
},
"phpExtensionBundles": [
"kitchen-sink"
],
"features": {
"networking": true
},
"steps": [
{
"step": "installPlugin",
"pluginZipFile": {
"resource": "wordpress.org\/plugins",
"slug": "woocommerce"
},
"options": {
"activate": true
}
},
{
"step": "installPlugin",
"pluginZipFile": {
"resource": "url",
"url": "https:\/\/downloads.wordpress.org\/plugin\/subscription.1.1.1.zip"
},
"options": {
"activate": true
}
},
{
"step": "importWxr",
"file": {
"resource": "url",
"url": "https://raw.githubusercontent.com/springdevs/subscription/next/site-content.xml"
}
},
{
"step": "wp-cli",
"command": "wp option patch insert woocommerce_onboarding_profile skipped 1"
},
{
"step": "wp-cli",
"command": "wp option patch insert woocommerce_currency BDT"
},
{
"step": "wp-cli",
"command": "wp option patch insert woocommerce_default_country BD:BD-13"
},
{
"step": "login",
"username": "admin",
"password": "password"
}
]
}