-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.json.example
66 lines (66 loc) · 1.51 KB
/
config.json.example
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"mongodb": {
"uri": "mongodb://127.0.0.1:27017",
"dbname": "vtapi"
},
"youtube": {
"api_keys": [],
"rotation_rate": 60
},
"twitch": {
"client_id": null,
"client_secret": null
},
"twitter": {
"token": null
},
"workers": {
"youtube": true,
"bilibili": false,
"twitch": false,
"twitcasting": false,
"mildom": false,
"twitter": false
},
"intervals": {
"bilibili": {
"channels": "*/60 */2 * * *",
"upcoming": "*/4 * * * *",
"live": "*/2 * * * *"
},
"youtube": {
"channels": "*/60 */2 * * *",
"feeds": "*/2 * * * *",
"live": "*/1 * * * *",
"missing_check": "*/5 * * * *"
},
"twitcasting": {
"channels": "*/60 */2 * * *",
"live": "*/1 * * * *"
},
"twitch": {
"channels": "*/60 */2 * * *",
"feeds": "*/15 * * * *",
"live": "*/1 * * * *"
},
"mildom": {
"channels": "*/60 */2 * * *",
"live": "*/1 * * * *"
},
"twitter": {
"channels": "*/60 */2 * * *",
"live": "*/1 * * * *",
"feeds": "*/3 * * * *"
}
},
"filters": {
"exclude": {
"channel_ids": [],
"groups": []
},
"include": {
"channel_ids": [],
"groups": []
}
}
}