-
Notifications
You must be signed in to change notification settings - Fork 470
Expand file tree
/
Copy path.wp-env.json
More file actions
47 lines (47 loc) · 1.5 KB
/
.wp-env.json
File metadata and controls
47 lines (47 loc) · 1.5 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
{
"$schema": "https://schemas.wp.org/trunk/wp-env.json",
"core": null,
"plugins": [
"./plugins/wp-graphql",
"./plugins/wp-graphql-smart-cache",
"./plugins/wp-graphql-ide",
"./plugins/wp-graphql-acf"
],
"themes": [
"https://downloads.wordpress.org/theme/twentytwentyone.latest-stable.zip",
"https://downloads.wordpress.org/theme/twentytwentyfive.latest-stable.zip"
],
"env": {
"development": {
"config": {
"WP_DEBUG_LOG": "/var/www/html/wp-content/plugins/wp-graphql/tests/_output/debug.log",
"WP_DEVELOPMENT_MODE": "plugin"
}
},
"tests": {
"plugins": [
"./plugins/wp-graphql",
"./plugins/wp-graphql-smart-cache",
"./plugins/wp-graphql-ide",
"./plugins/wp-graphql-acf",
"./plugins/wp-graphql/tests/e2e/plugins/settings-page-spec"
],
"config": {
"FS_METHOD": "direct",
"WP_MEMORY_LIMIT": "256M",
"WP_MAX_MEMORY_LIMIT": "512M"
},
"mappings": {
"/wp-content/plugins/wp-graphql": "./plugins/wp-graphql",
"/wp-content/plugins/wp-graphql/.env": "./plugins/wp-graphql/.env.dist",
"/wp-content/plugins/wp-graphql-smart-cache": "./plugins/wp-graphql-smart-cache",
"/wp-content/plugins/wp-graphql-ide": "./plugins/wp-graphql-ide",
"/wp-content/plugins/wp-graphql-acf": "./plugins/wp-graphql-acf",
"/var/www/html/tests": "./tests"
}
}
},
"lifecycleScripts": {
"afterStart": "bash bin/setup-wp-env.sh"
}
}