forked from slackapi/template-triage-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
28 lines (28 loc) · 994 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
{
"name": "bolt-js-triage-bot",
"description": "Triage stats for Slack channels powered by Bolt for JS",
"repository": "https://github.com/slackapi/template-triage-bot",
"logo": "https://slack.dev/bolt-js/assets/bolt-favicon.png",
"keywords": ["node", "Slack", "Bolt", "Javascript"],
"env": {
"SLACK_CLIENT_ID": {
"description": "Slack App Client ID (from your Slack app's Basic Information page)"
},
"SLACK_CLIENT_SECRET": {
"description": "Slack App Client Secret (from your Slack app's Basic Information page)"
},
"SLACK_SIGNING_SECRET": {
"description": "Slack App Signing Secret (from your Slack app's Basic Information page)"
},
"SLACK_BOT_SCOPES": {
"description": "Slack App Bot Scopes (comma separated, no spaces)",
"value": "channels:history,channels:join,channels:read,chat:write,commands,files:write"
}
},
"success_url": "/slack/install",
"buildpacks": [
{
"url": "heroku/nodejs"
}
]
}