-
Notifications
You must be signed in to change notification settings - Fork 13
/
app.json
58 lines (58 loc) · 1.13 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
56
57
58
{
"name": "My Rails Application",
"description": "Heroku review apps from GitHub PRs",
"scripts": {
"postdeploy": "bin/rails heroku:postdeploy heroku:review_app_setup",
"pr-predestroy": "bin/rails heroku:review_app_predestroy"
},
"formation": {
"web": {
"quantity": 1
},
"worker": {
"quantity": 1
}
},
"stack": "heroku-18",
"buildpacks": [
{
"url": "heroku/ruby"
},
{
"url": "https://github.com/heroku/heroku-buildpack-activestorage-preview"
},
{
"url": "heroku/jvm"
},
{
"url": "heroku-community/apt"
},
{
"url": "https://github.com/codeforamerica/heroku-pdftk-java-buildpack.git"
}
],
"env": {
"LOG_LEVEL": {
"value": "info"
},
"RACK_ENV": {
"value": "production"
},
"RAILS_ENV": {
"value": "heroku"
},
"RAILS_SERVE_STATIC_FILES": {
"value": "enabled"
},
"SECRET_KEY_BASE": {
"description": "Secret key base for Rails.",
"generator": "secret"
},
"HEROKU_APP_NAME": {
"required": true
}
},
"addons": [
"heroku-postgresql"
]
}