forked from red5pro/red5pro-server-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathauto-deploy-config.js
More file actions
39 lines (39 loc) · 843 Bytes
/
Copy pathauto-deploy-config.js
File metadata and controls
39 lines (39 loc) · 843 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
module.exports = {
default: {
workspace: '/tmp/red5pro-server-frontend',
dirToCopy: '/tmp/red5pro-server-frontend/dist/webapps',
deployTo: '/opt/local/webapps',
repositoryUrl: 'git@github.com:red5pro/red5pro-server-frontend.git',
ignores: [
'.git',
'.gitignore',
'auto-deploy-config.custom.js',
'auto-deploy-config.js',
'package.json',
'README.md',
'shipitfile.js',
'node_modules/'
],
keepReleases: 2,
deleteOnRollback: false,
shallowClone: true
},
feature: {
branch: '#target_feature_branch#',
servers: [
'#target_deployment_server#'
]
},
staging: {
branch: 'qa',
servers: [
'#target_deployment_server#',
]
},
production: {
branch: 'master',
servers: [
'#target_deployment_server#'
]
}
}