-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathapp.json
49 lines (49 loc) · 1.31 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
45
46
47
48
49
{
"name": "Slack Statsbot",
"description": "A Slack bot that reports on how much space men are taking up.",
"repository": "https://github.com/backspace/slack-statsbot",
"keywords": [
"feminism",
"slack",
"sjw"
],
"addons": [
"heroku-postgresql"
],
"scripts": {
"postdeploy": "./node_modules/.bin/sequelize --env production db:migrate"
},
"env": {
"SLACK_TOKEN": {
"description": "The API token in the Slack bot integration settings",
"required": true
},
"REPORTING_INTERVAL": {
"description": "A crontab-style specification of how often the bot should report statistics.",
"required": true,
"value": "0 * * * *"
},
"REPORTING_THRESHOLD": {
"description": "The minimum number of messages that must be sent in a channel before the bot will report.",
"required": true,
"value": "10"
},
"STATS_CHANNEL": {
"description": "The channel where the bot reports verbose statistics.",
"value": "statsbot"
},
"TOP_UNKNOWNS_TO_QUERY": {
"description": "The bot will query (only once) the top N people who have yet to self-identify to ask them to do so.",
"value": "2"
}
},
"formation": {
"web": {
"quantity": 0
},
"worker": {
"quantity": 1,
"size": "free"
}
}
}