forked from vigneshrams/statusify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
43 lines (43 loc) · 949 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
{
"name":"Statusify",
"description":"Statusify is a web-application status app, written entirely in Ruby on Rails.",
"scripts":{
"postdeploy":"bundle exec rake db:setup"
},
"env":{
"APP_NAME":{
"required":true,
"description": "The name of your application."
},
"CUSTOM_RUBY_VERSION":{
"required":false,
"value": "2.2.3",
"description": "The Ruby version you want to run on."
},
"LANG":{
"required":false,
"description": "The default language used by your app.",
"value": "en"
},
"RACK_ENV":{
"required":true,
"value": "production"
},
"RAILS_ENV":{
"required":true,
"value": "production"
},
"RAILS_SERVE_STATIC_FILES":{
"required":true,
"value": "true"
},
"SECRET_KEY_BASE":{
"required":true,
"generator": "secret"
}
},
"addons":[
"heroku-postgresql",
"heroku-redis"
]
}