-
Notifications
You must be signed in to change notification settings - Fork 0
/
.wp-env.json
42 lines (41 loc) · 1.52 KB
/
.wp-env.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
{
"plugins": [] ,
"mappings": {
"wp-content/mu-plugins/accessibility-checker-mu-plugin.php": "./.wp-env/mnt/mu-plugin.php",
"./../../../mnt/": "./.wp-env/mnt/",
".htpasswd": "./.wp-env/cfg/htpasswd.txt"
},
"env": {
"development": {
"port": 8888,
"plugins": [ "." ],
"mappings": {
"wp-content/plugins/accessibility-checker": "./../accessibility-checker/",
"wp-content/plugins/accessibility-checker-pro": "./../accessibility-checker-pro/",
"wp-content/plugins/accessibility-checker-audit-history": "./../accessibility-checker-audit-history/",
"wp-content/logs" : "./.wp-env/logs",
".htaccess": "./.wp-env/cfg/htaccess.txt"
},
"config": {
"WP_DEBUG": true,
"WP_DEBUG_LOG": "/var/www/html/wp-content/logs/dev_debug.log",
"WP_DEBUG_DISPLAY": true
}
},
"tests": {
"port": 8889,
"plugins": [],
"mappings": {
"source": "./",
"wp-content/plugins": "./.wp-env/plugins",
"wp-content/logs" : "./.wp-env/logs",
".htaccess": "./.wp-env/cfg/htaccess.txt"
},
"config": {
"WP_DEBUG": true,
"WP_DEBUG_LOG": "/var/www/html/wp-content/logs/tests_debug.log",
"WP_DEBUG_DISPLAY": true
}
}
}
}