-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
26 lines (26 loc) · 812 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
{
"name": "Webhook Slackbot",
"description": "A Slackbot that listens to a channel and sends the full message as a webhook",
"repository": "https://github.com/brett-hobbs/webhook-slackbot",
"success_url": "/",
"env": {
"SLACK_TOKEN": {
"description": "Slack bot RTM API token",
"required": true
},
"WEBHOOK_URL": {
"description": "Outgoing webhook url or urls delimited by a semicolon",
"required": true
},
"MESSAGE_FILTER_FIELD": {
"description": "Optional field on which to filter, used in conjunction with MESSAGE_FILTER_TEXT",
"required": false
},
"MESSAGE_FILTER_TEXT": {
"description": "Text (substring) expected in the filter field",
"required": false
},
"NODE_ENV": "staging"
},
"image": "heroku/nodejs"
}