-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.sample.json
39 lines (39 loc) · 1000 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
{
"host": "127.0.0.1",
"port": 8080,
"repos": [
{
"name": "hookah",
"branch": "*",
"tasks" : [
{
"cwd": "/home/user/hookah/",
"cmd": "./test.sh",
"args": ["prod", "dev"]
}
]
},
{
"name": "hookah",
"branch": "master",
"tasks" : [
{
"cwd": "/home/user/hookah/repo",
"cmd": "git",
"args": ["pull"]
},
{
"cwd": "/home/user/hookah/",
"cmd": "./deploy.sh",
"args": ["prod"]
}
],
"notify": {
"telegram" : {
"token": "bot123456:ABC-DEF1234ghIkl-zyx57W2v1u123ew11",
"chat_id": 123456
}
}
}
]
}