-
Notifications
You must be signed in to change notification settings - Fork 14
/
app.json
48 lines (48 loc) · 951 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "Open311Status",
"description": "",
"website": "",
"repository": "https://github.com/codeforamerica/open311status",
"scripts": {
"postdeploy": "POSTGRES_STATEMENT_TIMEOUT=90s bin/rails db:prepare
},
"env": {
"HEROKU_APP_NAME": {
"required": true
},
"HEROKU_PARENT_APP_NAME": {
"required": true
},
"RACK_ENV": {
"required": true
},
"RAILS_ENV": {
"required": true
},
"RAILS_MAX_THREADS": {
"description": "Number of Puma threads to run.",
"value": "2"
},
"SECRET_KEY_BASE": {
"description": "Secret key base for Rails.",
"generator": "secret"
},
"WEB_CONCURRENCY": {
"description": "Number of Puma processes to run.",
"value": "1"
}
},
"buildpacks": [
{
"url": "heroku/nodejs"
},
{
"url": "heroku/ruby"
}
],
"addons": [
{
"plan": "heroku-postgresql"
}
]
}