-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.wp-env.json
More file actions
33 lines (33 loc) · 778 Bytes
/
Copy path.wp-env.json
File metadata and controls
33 lines (33 loc) · 778 Bytes
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
{
"plugins": [
"https://downloads.wordpress.org/plugin/gutenberg.23.7.0.zip",
"./packages/personal-notes",
"./packages/personal-readwise-sync",
"./packages/personal-evernote-sync",
"./packages/personal-todo",
"./packages/personal-ai-chat"
],
"config": {
"WP_DEBUG": true,
"WP_DEBUG_LOG": true,
"SCRIPT_DEBUG": true,
"WP_DEBUG_DISPLAY": true
},
"mappings": {
"wp-content/debug.log": "./debug.log",
"wp-content/personalos-tests": ".",
"wp-content/shared/php": "./shared/php",
"wp-content/vendor": "./vendor"
},
"env": {
"development": {
"port": 8901
},
"tests": {
"port": 8902
}
},
"lifecycleScripts": {
"afterStart": "wp-env run cli wp option update gutenberg-experiments '{\"gutenberg-guidelines\":true}' --format=json"
}
}