-
Notifications
You must be signed in to change notification settings - Fork 1
/
config-example.yml
46 lines (44 loc) · 1.08 KB
/
config-example.yml
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
.default: &default
application: my_website
theme_name: '{{application}}'
repository: git@github.com:itsahappymedium/{{application}}.git
url: http://{{application}}.dev
wp_user: admin
wp_email: developers@itsahappymedium.com
database:
host: localhost
database: database_name
username: database_user
password: database_pass
wp_config_constants: &default_wp_config_constants
ENV: local
staging-server:
<<: *default
hostname: 123.456.78.90
stage: staging
branch: development
user: www-data
url: http://{{application}}.staging.com
database:
host: localhost
database: database_name
username: database_user
password: database_pass
wp_config_constants:
<<: *default_wp_config_constants
ENV: staging
production-server:
<<: *default
hostname: 098.765.43.21
stage: production
branch: main
user: www-data
url: PRODUCTION_SITE_URL
database:
host: localhost
database: database_name
username: database_user
password: database_pass
wp_config_constants:
<<: *default_wp_config_constants
ENV: production