-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathblueprint.local.json
47 lines (47 loc) · 1.13 KB
/
blueprint.local.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
{
"$schema": "https://playground.wordpress.net/blueprint-schema.json",
"meta": {
"title": "Remote Data Blocks local playground",
"description": "Runs Remote Data Blocks plugin in a local WordPress Playground",
"author": "WordPress VIP",
"categories": [ "Content" ]
},
"features": {
"networking": true
},
"landingPage": "/wp-admin/admin.php?page=remote-data-blocks-settings",
"login": true,
"preferredVersions": {
"php": "8.2",
"wp": "latest"
},
"steps": [
{
"step": "setSiteOptions",
"options": {
"blogname": "Remote Data Blocks",
"blogdescription": "Explore the Remote Data Blocks plugin in a WordPress Playground"
}
},
{
"step": "defineWpConfigConsts",
"consts": {
"USE_PLAYGROUND_CORS_PROXY": false
}
},
{
"step": "installPlugin",
"options": {
"activate": true
},
"pluginZipFile": {
"resource": "wordpress.org/plugins",
"slug": "query-monitor"
}
},
{
"step": "activatePlugin",
"pluginPath": "remote-data-blocks/remote-data-blocks.php"
}
]
}