-
Notifications
You must be signed in to change notification settings - Fork 28
/
app.json
38 lines (38 loc) · 833 Bytes
/
app.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
{
"name": "Slack OOO",
"description": "Slack Out of Office Message Responder",
"keywords": [
"slack",
"bot",
"ooo",
"out of office"
],
"repository": "https://github.com/shaunburdick/slack-ooo",
"env": {
"APP_ANNOUNCE_TIMES": {
"description": "A list of times to announce OoO users",
"value": "08:00, 16:00"
},
"APP_ANNOUNCE_CHANNELS": {
"description": "A list of channels to announce OoO users on",
"value": "general"
},
"SLACK_TOKEN": {
"description": "Your Slack token"
},
"SLACK_AUTO_RECONNECT": {
"description": "Reconnect on disconnect",
"value": "true"
},
"NODE_ENV": {
"value": "production"
}
},
"image": "heroku/nodejs",
"formation": {
"bot": {
"quantity": 1,
"size": "free"
}
}
}