-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.wp-env.json
41 lines (41 loc) · 1.17 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
{
"core": "https://ja.wordpress.org/latest-ja.zip",
"phpVersion": "8.3",
"port": 8000,
"env": {
"tests": {
"port": 8001
}
},
"plugins": [
"https://downloads.wordpress.org/plugin/wp-multibyte-patch.zip",
"https://downloads.wordpress.org/plugin/wp-mail-smtp.zip",
"https://downloads.wordpress.org/plugin/wordpress-seo.zip",
"https://downloads.wordpress.org/plugin/siteguard.zip",
"https://downloads.wordpress.org/plugin/admin-menu-editor.zip",
"https://downloads.wordpress.org/plugin/custom-post-type-ui.zip",
"https://downloads.wordpress.org/plugin/custom-post-type-permalinks.zip"
],
"themes": [],
"mappings": {
"wp-content/uploads": "./wp/uploads",
"wp-content/plugins": "./wp/plugins",
"wp-content/themes/dev": "./src",
"wp-content/themes/prod": "./dist",
"sql": "./sql"
},
"config": {
"WP_DEBUG": true,
"AUTOMATIC_UPDATER_DISABLED": true,
"WPMS_ON": true,
"WPMS_MAILER": "smtp",
"WPMS_SMTP_HOST": "mailpit",
"WPMS_SMTP_PORT": 1025,
"WPMS_SSL": "",
"WPMS_SMTP_AUTH": false,
"WPMS_SMTP_AUTOTLS": false
},
"lifecycleScripts": {
"afterStart": "node ./setup-env.js"
}
}