-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhosts.yml
More file actions
executable file
·32 lines (31 loc) · 934 Bytes
/
hosts.yml
File metadata and controls
executable file
·32 lines (31 loc) · 934 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
## Sample configuration
test:
stage: test # this is just a name
local: true
branch: developer
dump_db: false # if true then a db dump is created during deployment
deploy_path: /var/www/webroot # where to deploy files
locales: en_US de_CH # locales for setup:static-content:deploy
# Directories that should not be newly created upon deployment.
# Symlinks to corresponding dirs in {deploy_path}/shared/ will be created.
shared_dirs:
- var
- pub/media
- extensions-client
shared_files: # same as directories but files
- app/etc/env.php
- pub/sitemap.xml
production:
stage: production
local: true
branch: master
dump_db: true
deploy_path: /var/www/webroot
locales: en_US de_CH es_ES
shared_dirs:
- var
- pub/media
- extensions-client
shared_files:
- app/etc/env.php
- pub/sitemap.xml