-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.sample.json
51 lines (46 loc) · 1.16 KB
/
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
49
50
51
{
"watcher": {
"enabled": true,
"interval": 5000,
"repositories": [
{
"url": "[email protected]:your-org/your-project",
"branches": ["a-specific-branch"]
}
]
},
"webhooks": {
"enabled": true,
"port": 1234,
"secret": "peon-super-secret",
"url": "https://my.host/peon-webhooks"
},
"git": {
"authMethod": "key",
"privateKey": "/path/to/id_rsa",
"publicKey": "/path/to/id_rsa.pub",
"keyPassword": "super-secret"
},
"destinations": {
"myremote": {
"destination": "user@remote:/var/www/html/documentation",
"rootUrl": "/documentation/",
"absoluteUrl": "https://my.remote/documentation/",
"shell": "ssh -o StrictHostKeyChecking=no -i /path/to/id_rsa"
},
"local": {
"destination": "/var/www/html/peon-builds",
"rootUrl": "/peon-builds/",
"absoluteUrl": "https://my.host/peon-builds/"
}
},
"cacheValidity": 2592000000,
"cacheMaxSize": 0,
"workingDirectory": "./data",
"statusDirectory": "/var/www/html/peon-status",
"statusUrl": "https://my.host/peon-status/",
"githubAPIToken": "abcdef",
"logger": {
"level": "debug"
}
}