-
Notifications
You must be signed in to change notification settings - Fork 15
/
app.json
53 lines (53 loc) · 1.41 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
{
"name": "Rails 5 Starter App",
"description": "An opinionated starter application based on Ruby 2.6, Rails 5.2, Webpack 4, Yarn and Bootstrap 4",
"keywords": [
"Ruby 2.6",
"Rails 5.2",
"Webpack 4",
"Bootstrap 4",
"Font Awesome 5"
],
"website": "https://ruby2-rails5-bootstrap-heroku.herokuapp.com/",
"repository": "https://github.com/diowa/ruby2-rails5-bootstrap-heroku",
"success_url": "/",
"scripts": {
"postdeploy": "bundle exec rails db:schema:load db:seed"
},
"env": {
"RAILS_MASTER_KEY": {
"description": "Encryption key to decrypt credentials file",
"value": "b8cc3ac9ab8a3280b03af3d29b2e50ca"
},
"RAILS_ENV": "production",
"RAILS_SERVE_STATIC_FILES": "enabled",
"RUBY_GC_HEAP_OLDOBJECT_LIMIT_FACTOR": {
"description": "Reduces RGenGC's memory consumption",
"value": "1.3"
},
"NEW_RELIC_APP_NAME": {
"description": "Sets the name of your application as it will appear on the New Relic dashboard.",
"value": "Rails 5 Starter App"
},
"AIRBRAKE_HOST": {
"description": "Airbrake host. (OPTIONAL)",
"required": false
}
},
"addons": [
"heroku-postgresql:hobby-dev",
"papertrail",
"newrelic"
],
"buildpacks": [
{
"url": "https://github.com/heroku/heroku-buildpack-activestorage-preview"
},
{
"url": "heroku/nodejs"
},
{
"url": "heroku/ruby"
}
]
}