-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevbox.json
More file actions
51 lines (51 loc) · 1.24 KB
/
devbox.json
File metadata and controls
51 lines (51 loc) · 1.24 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
48
49
50
51
{
"packages": [
"mariadb@latest",
"apache@latest",
"php@latest",
"php84Extensions.xdebug@latest",
"php84Packages.composer@latest",
"wordpress@latest",
"wp-cli@latest",
"adminerevo@latest"
],
"env": {
"DB_HOST": "127.0.0.1",
"DB_NAME": "wordpress",
"DB_USER": "user",
"DB_PASSWORD": "password",
"MYSQL_UNIX_PORT": "/tmp/devbox-mysql.sock",
"HTTPD_PORT": "8081",
"NGINX_PORT": "8081",
"PHPFPM_PORT": "8082",
"WEBSERVER": "apache",
"WP_URL": "http://localhost:8081",
"WP_TITLE": "Devbox WordPress",
"WP_ADMIN_USER": "admin",
"WP_ADMIN_PASSWORD": "password",
"WP_ADMIN_EMAIL": "admin@devbox.local"
},
"shell": {
"scripts": {
"setup_devbox": [
"bash scripts/setup_db.sh",
"bash scripts/setup_wordpress.sh",
"bash scripts/configure_php.sh",
"bash scripts/setup_plugins.sh",
"bash scripts/configure_htaccess.sh"
],
"setup_users": [
"bash scripts/setup_users.sh"
],
"setup_woocommerce": [
"bash scripts/setup_woocommerce.sh"
],
"setup_elementor": [
"bash scripts/setup_elementor.sh"
],
"setup_nginx": [
"bash scripts/setup_nginx.sh"
]
}
}
}