-
Notifications
You must be signed in to change notification settings - Fork 9
/
config.sample.json
48 lines (41 loc) · 931 Bytes
/
config.sample.json
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
{
"supportEmail": "[email protected]",
"supportEmailFrom": "[email protected]",
"logs": false,
"retryOnErrorCount": 2,
"projects": {
"articles": {
"remote": "[email protected]:Perennials/articles.git",
"supportEmail": "[email protected]",
"branches": {
"master": {
"local": "/var/www/deploy/articles/master/"
},
"old": {
"local": "/var/www/deploy/articles/old/",
"autosync": false,
"commandOnFinish": "echo good",
"urlOnFinish": "http://google.com",
"syncSubmodules": false
}
}
},
"~(.+)-js": {
"initial": [
"unitest-js",
"prototype-js"
],
"remote": "[email protected]:Perennials/{$project.0}.git",
"branches": {
"~.+": {
"local": "/var/www/deploy/{$project.1}/{$branch.0}"
},
"*": {
"local": "/var/www/deploy/{$project.1}/.redmine",
"bare": true,
"deep": true
}
}
}
}
}