forked from octobox/octobox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
32 lines (32 loc) · 887 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": "Octobox",
"description": "The best way to manage your GitHub Notifications",
"repository": "https://github.com/octobox/octobox",
"scripts": {
"postdeploy": "bundle exec rake db:migrate"
},
"license": "AGPL-3.0-only",
"env": {
"GITHUB_CLIENT_ID": {
"description": "The GitHub Application Client ID",
"required": true
},
"GITHUB_CLIENT_SECRET": {
"description": "The GitHub Application Client Secret",
"required": true
},
"MINIMUM_REFRESH_INTERVAL": {
"description": "Minimum value allowed for a user to set auto-refresh. Setting to 0 means this is disabled.",
"value": "10"
},
"WEB_CONCURRENCY": {
"description": "Specifies the number of `workers` to boot in clustered mode.",
"value": "2"
}
},
"addons": [
"heroku-postgresql",
"heroku-redis",
"scheduler"
]
}