-
Notifications
You must be signed in to change notification settings - Fork 2
/
config.sample.json
72 lines (72 loc) · 2.06 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"key": "changeme",
"frontendEnabled": true,
"plugins": [{
"plugin": "irc",
"server": "irc.fu-berlin.de",
"nick": "sTUHL",
"userName": "stuhljs",
"realName": "Der neue sTUHL - jetzt noch flüssiger!",
"channels": [{
"name": "public-irc",
"channel": "#yourparty"
}, {
"name": "orga-irc",
"channel": "#yourparty.orga",
"key": "your-irc-key"
}]
}, {
"plugin": "slack",
"channels": [{
"name": "slack",
"webhook": "https://hooks.slack.com/services/YOUR/KEY/HERE",
"icon": ":poop:"
}]
}, {
"plugin": "telegram",
"token": "yourtokenhere",
"channels": [{
"name": "telegram",
"channel": "@yourparty"
}]
}, {
"plugin": "discord",
"token": "yourtokenhere",
"channels": [{
"name": "discord-announcements",
"channelID": "1234567890"
}]
}, {
"plugin": "onesignal",
"apiKey": "yourkey",
"appID": "your-id",
"channels": [{
"name": "push-all"
}, {
"name": "push-android",
"androidOnly": true
}, {
"name": "push-ios",
"iosOnly": true
}, {
"name": "push-windows",
"windowsOnly": true
}, {
"name": "push-competitions",
"segments": ["Competitions"]
}, {
"name": "push-deadlines",
"segments": ["Deadlines"]
}, {
"name": "push-events",
"segments": ["Events"]
}]
}],
"destinations": {
"general": ["public-irc", "push-all", "telegram", "discord-announcements"],
"competitions": ["public-irc", "push-competitions", "telegram", "discord-announcements"],
"deadlines": ["public-irc", "push-deadlines"],
"events": ["public-irc", "push-events", "telegram", "discord-announcements"],
"orga": ["orga-irc", "slack"]
}
}