-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhosts.example.yml
More file actions
42 lines (37 loc) · 914 Bytes
/
hosts.example.yml
File metadata and controls
42 lines (37 loc) · 914 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
34
35
36
37
38
39
40
41
42
# Normally you will no need to bother this part
.base: &base
identityFile: ~/.ssh/id_rsa
# Change to your host
.host: &host
<<: *base
alias: server.antwebstudio.com # change this
remote_user: antweb # change this
port: 22
# Change to your database settings
.db: &db
<<: *host
# db:
# dbUser:
# dbPassword:
# dbPrefix:
# Only need to edit this part if you use db:download and db:update_beta command
.extra: &extra
<<: *db
liveDbUser: "{{dbUser}}"
liveDbPassword: "{{dbPassword}}"
liveDb: "{{db}}"
localhostDb: "{{application}}"
.app: &app
<<: *extra
repository: git@bitbucket.org:antwebstudio/xxxxx.git # change this
deploy_path: ~/live/{{application}} # change this
# name: "Ant Web Studio"
application: antwebstudio
# maintenance: false
# debug: false
keep_releases: 3
#theme: "{{application}}"
#useTranslateManager: false
hosts:
beta:
<<: *app