-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
44 lines (44 loc) · 1.48 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
40
41
42
43
44
{
"name": "TacoCat",
"description": "Give tacos for all the good things your friends say and do on Slack.",
"website": "https://github.com/percula/tacocat",
"repository": "https://github.com/percula/tacocat",
"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"
},
"MAX_OPS": {
"description": "Max number of ops per specified duration",
"value": "20"
},
"MAX_OPS_DURATION": {
"description": "Duration for max number of ops, in hours",
"value": "24"
},
"MAX_QUANTITY_PER_OP": {
"description": "Max quantity per operation",
"value": "5"
},
"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"
}
]
}