forked from Automattic/remote-data-blocks-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblueprint.json
More file actions
61 lines (61 loc) · 1.34 KB
/
blueprint.json
File metadata and controls
61 lines (61 loc) · 1.34 KB
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
{
"$schema": "https://playground.wordpress.net/blueprint-schema.json",
"meta": {
"title": "Remote Data Blocks Demo",
"description": "Installs plugins to demo Remote Data Blocks.",
"author": "WordPress VIP",
"categories": [
"Content"
]
},
"features": {
"networking": true
},
"landingPage": "/wp-admin/post-new.php",
"login": true,
"preferredVersions": {
"php": "8.2",
"wp": "latest"
},
"steps": [
{
"step": "installPlugin",
"pluginData": {
"resource": "wordpress.org/plugins",
"slug": "jetpack"
},
"options": {
"activate": true
}
},
{
"step": "setSiteOptions",
"options": {
"jetpack_active_modules": [
"blocks",
"subscriptions"
]
}
},
{
"step": "defineWpConfigConsts",
"consts": {
"JETPACK_DEBUG": "true",
"JETPACK_DEV_DEBUG": "true",
"DNS_NS": 0
}
},
{
"step": "installPlugin",
"options": {
"activate": true,
"targetFolderName": "remote-data-blocks"
},
"pluginData": {
"caption": "Installing Remote Data Blocks",
"resource": "url",
"url": "https://playground.wordpress.net/plugin-proxy.php?repo=Automattic/remote-data-blocks&name=remote-data-blocks.zip"
}
}
]
}