forked from atsss/redashbot
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathapp.json
More file actions
44 lines (44 loc) · 1.3 KB
/
app.json
File metadata and controls
44 lines (44 loc) · 1.3 KB
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
{
"name": "Slack Bot for Redash",
"description": "A slack bot for Redash, it can get screen capture of Redash visualization",
"repository": "https://github.com/atsss/redashbot",
"keywords": ["redash", "slack", "bot"],
"env": {
"SLACK_BOT_TOKEN": {
"description": "Slack bot token, for more detail see https://api.slack.com/bot-users",
"required": true
},
"SLACK_SIGNING_SECRET": {
"description": "Slack's sigining secret., for more detail see https://api.slack.com/bot-users",
"required": true
},
"REDASH_HOST": {
"description": "URL of your Redash server, like https://your-redash-server.example.com",
"required": true
},
"REDASH_HOST_ALIAS": {
"description": "URL of your Redash server accessible from the bot.",
"required": true
},
"REDASH_API_KEY": {
"description": "API key of your Redash account",
"required": false
},
"REDASH_HOSTS_AND_API_KEYS": {
"description": "If you want to use multiple Redash at once, specify like http://redash1.example.com;TOKEN1,http://redash2.example.com;TOKEN2",
"required": false
}
},
"formation": {
"web": {
"quantity": 1,
"size": "hobby"
}
},
"stack": "container",
"addons": [
{
"plan": "papertrail:choklad"
}
]
}