-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathapp.json
35 lines (35 loc) · 884 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
29
30
31
32
33
34
35
{
"name": "@RSS bot",
"description": "A Slack bot that generates channel-specific RSS feeds from shared links.",
"repository": "https://github.com/InterwebAlchemy/scrape-rss-bot/",
"keywords": ["node", "bots", "slack","botkit", "rss", "RSS bot"],
"website": "https://www.rssbot.app/",
"success_url":"/",
"addons":[
{
"plan": "mongolab",
"as": "MONGODB"
}
],
"env": {
"clientId": {
"required": true,
"description": "Client ID provided by Slack"
},
"clientSecret": {
"required": true,
"description": "Client Secret provided by Slack"
},
"clientSigningSecret": {
"required": true,
"description": "Client Signing Secret provided by Slack"
},
"ANALYTICS": "FALSE",
"HEROKU_APP_NAME": {
"required": true
},
"HEROKU_PARENT_APP_NAME": {
"required": true
}
}
}