forked from pokealarm/pokealarm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
alarms.json.example
45 lines (45 loc) · 1015 Bytes
/
alarms.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
{
"discord_alarm":{
"active":false,
"type":"discord",
"webhook_url":"YOUR_WEBHOOK_URL"
},
"facebook_alarm":{
"active":false,
"type":"facebook_page",
"page_access_token":"YOUR_PAGE_ACCESS_TOKEN"
},
"pushbullet_alarm":{
"active":false,
"type":"pushbullet",
"api_key":"YOUR_API_KEY"
},
"slack_alarm":{
"active":false,
"channel":"general",
"type":"slack",
"api_key":"YOUR_API_KEY"
},
"telegram_alarm":{
"active":false,
"type":"telegram",
"bot_token":"YOUR_BOT_TOKEN",
"chat_id":"YOUR_CHAT_ID"
},
"twilio_alarm":{
"active":false,
"type":"twilio",
"account_sid":"YOUR_API_KEY",
"auth_token":"YOUR_AUTH_TOKEN",
"from_number":"YOUR_FROM_NUM",
"to_number":"YOUR_TO_NUM"
},
"twitter_alarm":{
"active":false,
"type":"twitter",
"access_token":"YOUR_ACCESS_TOKEN",
"access_secret":"YOUR_ACCESS_SECRET",
"consumer_key":"YOUR_CONSUMER_KEY",
"consumer_secret":"YOUR_CONSUMER_SECRET"
}
}