forked from schoolofdata-ch/sodabot
-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.json
39 lines (39 loc) · 1.11 KB
/
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
36
37
38
39
{
"name": "dridbot",
"logo": "https://raw.githubusercontent.com/hackathons-ftw/dribdat/master/dribdat/static/img/badge-black.png",
"description": "An open source chatbot for data-driven team collaboration, such as Hackathons.",
"keywords": [
"teambuilding",
"hackathon",
"collaboration",
"chatbot"
],
"website": "https://dribdat.cc",
"repository": "https://github.com/hackathons-ftw/dridbot",
"buildpacks": [
{ "url": "heroku/nodejs" }
],
"env": {
"HUBOT_SLACK_TOKEN": {
"description": "A token for connecting this bot to Slack",
"value": "xoxb-..."
},
"DRIBDAT_APIKEY": {
"description": "A secret key for connecting to the dribdat API",
"value": ""
},
"DRIBDAT_HOST": {
"description": "Host name of the dribdat instance to connect to",
"value": "https://my-dribdat-instance.herokuapp.com"
},
"HUBOT_HEROKU_KEEPALIVE_URL": {
"description": "Host name of the bot Heroku instance for the keepalive",
"value": "https://my-dridbot-instance.herokuapp.com/"
}
},
"addons": [
{
"plan": "heroku-redis"
}
]
}