forked from tdmalone/working-plusplus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
32 lines (32 loc) · 1.2 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
{
"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/tdmalone/working-plusplus",
"keywords": [
"slack",
"karma"
],
"env": {
"SLACK_BOT_USER_OAUTH_ACCESS_TOKEN": {
"description": "Token provided by Slack for your bot user when installing the app to your team. Find this under Basic Information -> OAuth & Permissions within your Slack app management page.",
"value": "xoxp-00000000000-000000000000-xxxxxxxxxxxxxxxxxxxxxxxx"
},
"SLACK_VERIFICATION_TOKEN": {
"description": "Verification Token provided by Slack. Find this under Basic Information -> App Credentials within your Slack app management page.",
"value": "xxxxxxxxxxxxxxxxxxxxxxxx"
},
"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"
}
]
}