forked from hakobera/redashbot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
42 lines (42 loc) · 1.41 KB
/
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
39
40
41
42
{
"name": "Slack Bot for re:dash",
"description": "A slack bot for re:dash, it can get screen capture of re:dash visualization",
"repository": "https://github.com/hakobera/redashbot",
"keywords": ["re:dash", "slack", "bot"],
"env": {
"SLACK_BOT_TOKEN": {
"description": "Slack bot token, for more detail see https://api.slack.com/bot-users",
"required": true
},
"REDASH_HOST": {
"description": "URL of your re:dash server, like https://your-redash-server.example.com",
"required": false
},
"REDASH_HOST_ALIAS": {
"description": "URL of your re:dash server accessible from the bot.",
"required": false
},
"REDASH_API_KEY": {
"description": "API key of your re:dash account",
"required": false
},
"REDASH_HOSTS_AND_API_KEYS": {
"description": "If you want to use multiple Re:dash at once, specify like http://redash1.example.com;TOKEN1,http://redash2.example.com;TOKEN2",
"required": false
},
"SLACK_MESSAGE_EVENTS": {
"description": "Message events this bot reacts. Default is \"direct_message,direct_mention,mention\"Available values are listed in https://github.com/howdyai/botkit/blob/master/readme-slack.md#message-received-events",
"required": false
}
},
"formation": {
"web": {
"quantity": 0
},
"worker": {
"quantity": 1,
"size": "hobby"
}
},
"image": "heroku/nodejs"
}