-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
blueprint.json
63 lines (63 loc) · 1.57 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
61
62
63
{
"$schema": "https://playground.wordpress.net/blueprint-schema.json",
"preferredVersions": {
"php": "8.1",
"wp": "6.5"
},
"features": {
"networking": true
},
"phpExtensionBundles": [
"kitchen-sink"
],
"landingPage": "/leave-a-comment/",
"steps": [
{
"step": "login",
"username": "admin",
"password": "password"
},
{
"step": "installTheme",
"themeZipFile": {
"resource": "wordpress.org/themes",
"slug": "astra"
},
"options": {
"activate": true
}
},
{
"step": "installPlugin",
"pluginZipFile": {
"resource": "wordpress.org/plugins",
"slug": "simple-comment-editing"
},
"options": {
"activate": true
}
},
{
"step": "importWxr",
"file": {
"resource": "url",
"url": "https://raw.githubusercontent.com/DLXPlugins/simple-comment-editing/5d1f6469dc4a30a26b7a9649e9b4961e5e141c9a/blueprint-content.xml"
}
},
{
"step": "setSiteOptions",
"options": {
"blogname": "Comment Edit Core Demo",
"users_can_register": "0",
"admin_email": "[email protected]"
}
},
{
"step": "setSiteOptions",
"options": {
"permalink_structure": "/%postname%/",
"comment-edit-lite-activate": "noredirect"
}
}
]
}