-
Notifications
You must be signed in to change notification settings - Fork 3
/
app.json
54 lines (54 loc) · 1.44 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
{
"name": "Rails 7 Starter App",
"description": "An opinionated starter application based on Ruby 3.1, Rails 7.1, Webpack 5, Yarn, and Bootstrap 5",
"keywords": [
"Ruby 3.1",
"Rails 7.1",
"Webpack 5",
"Bootstrap 5",
"Font Awesome 6"
],
"website": "https://ruby3-rails7-bootstrap-heroku.herokuapp.com/",
"repository": "https://github.com/diowa/ruby3-rails7-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": "02a9ea770b4985659e8ce92699f218dc"
},
"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 7 Starter App"
},
"AIRBRAKE_HOST": {
"description": "Airbrake host. (OPTIONAL)",
"required": false
}
},
"addons": [
"heroku-postgresql:hobby-dev",
"papertrail",
"newrelic",
"heroku-redis:hobby-dev"
],
"buildpacks": [
{
"url": "https://github.com/heroku/heroku-buildpack-activestorage-preview"
},
{
"url": "heroku/nodejs"
},
{
"url": "heroku/ruby"
}
]
}