forked from macobo/slackbot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
23 lines (23 loc) · 693 Bytes
/
app.json
File metadata and controls
23 lines (23 loc) · 693 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "Slackbot",
"description": "Build your own slackbot base",
"website": "https://github.com/macobo/slackbot",
"success_url": "/",
"keywords": [
"chatbot",
"bot",
"slack",
"ruby"
],
"env": {
"SLACK_API_TOKEN": {
"required": true,
"description": "Token from https://api.slack.com/#auth. Used to send private messages"
},
"SLACK_WEBHOOK_TOKEN": {
"required": false,
"description": "(not required) Found at https://stripe.slack.com/services/new/outgoing-webhook"
},
"BUILDPACK_URL": "https://github.com/heroku/heroku-buildpack-ruby"
}
}