generated from fs/ruby-base
-
Notifications
You must be signed in to change notification settings - Fork 30
/
app.json
55 lines (55 loc) · 1.49 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
50
51
52
53
54
55
{
"name": "Harvest Notifier",
"description": "Automatic notification script for Slack based on Harvest data",
"repository": "https://github.com/fs/harvest-notifier/",
"keywords": [
"harvest",
"notification",
"slack"
],
"env": {
"ROLLBAR_ACCESS_TOKEN": {
"required": false
},
"SNITCH_DAILY": {
"required": false
},
"SECRET_KEY_BASE": {
"generator": "secret"
},
"HARVEST_TOKEN": {
"required": true
},
"HARVEST_ACCOUNT_ID": {
"required": true
},
"SLACK_TOKEN": {
"required": true
},
"EMAILS_WHITELIST": {
"description": "EMAILS_WHITELIST is a variable that lists emails separated by commas, which don't need to be notified in Slack. For example, administrators or managers.",
"required": false
},
"HARVEST_URL": {
"required": false
},
"MISSING_HOURS_THRESHOLD": {
"description": "MISSING_HOURS_THRESHOLD is a variable that indicates the minimum threshold of hours at which the employee will not be notified in Slack. For example, 2.5 or 4. The default threshold is 1 hour. Leave empty if satisfied with the default value.",
"required": false
},
"SLACK_CHANNEL": {
"description": "Default channel is general. Leave empty if satisfied with the default value.",
"required": false
}
},
"addons": [
"deadmanssnitch:the-lone-snitch",
"scheduler:standard",
"rollbar:free"
],
"buildpacks": [
{
"url": "heroku/ruby"
}
]
}