-
Notifications
You must be signed in to change notification settings - Fork 2
/
app.json
32 lines (32 loc) · 937 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
{
"name": "Working PlusPlus++",
"description": "Like plusplus.chat, but one that actually works, because you can host it yourself 😉",
"website": "https://github.com/tdmalone/working-plusplus",
"repository": "https://github.com/rowdychildren/working-plusplus",
"keywords": [
"slack",
"karma"
],
"env": {
"DISCORD_TOKEN": {
"description": "Token provided by discord for your bot user when installing the app to your team.",
"value": ""
},
"MAX_OPS": {
"description": "Max number of ops per 24 hour period",
"value": "20"
},
"YARN_PRODUCTION": {
"description": "This configures Heroku to only install production dependencies. See https://devcenter.heroku.com/articles/nodejs-support#package-installation for more details.",
"value": "true"
}
},
"addons": [
"heroku-postgresql"
],
"buildpacks": [
{
"url": "heroku/nodejs"
}
]
}