forked from daghaian/nzbthrottle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig_example.json
52 lines (52 loc) · 1021 Bytes
/
config_example.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
52
{
"plex":
{
"url":"http://localhost:32400",
"interval":60,
"token": "daf32j3ik3l2k"
},
"nzbget":
{
"username":"test_user",
"password":"test_pass",
"url":"http://localhost:6789",
"speeds":{
"1":5000,
"2":4000,
"3":3000,
"4":2000,
"5":1000
},
"max_speed":80000
},
"notifications": {
"Discord": {
"enabled": false,
"url": "discord://webhook_id/webhook_token"
},
"Rocket.Chat": {
"enabled": false,
"url": "rocket://user:password@hostname/RoomID/Channel"
},
"Slack": {
"enabled": false,
"url": "slack://TokenA/TokenB/TokenC/Channel"
},
"Telegram": {
"enabled": false,
"url": "tgram://bottoken/ChatID"
},
"IFTTT": {
"enabled": false,
"url": "ifttt://webhooksID/EventToTrigger"
},
"PushBullet":{
"enabled": false,
"url": "pbul://accesstoken"
},
"Growl": {
"enabled": false,
"url": "growl://hostname"
}
}
}