-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
62 lines (61 loc) · 1.75 KB
/
app.json
File metadata and controls
62 lines (61 loc) · 1.75 KB
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
59
60
61
62
{
"name": "RapidRails",
"description": "A Ruby on Rails template for API apps.",
"website": "https://rapidrails.dev",
"logo": "https://rapidrails.dev/logo.svg",
"scripts": {
"postdeploy": "bundle exec rails db:migrate"
},
"env": {
"BUNDLE_WITHOUT": "development:test",
"JEMALLOC_ENABLED": "true",
"MALLOC_ARENA_MAX": "2",
"RAILS_MASTER_KEY": {
"description": "Secret key for decrypting Rails credentials. You can find it at: config/credentials/production.key"
},
"RAILS_ENV": {
"description": "The Rails environment to run: production or staging",
"value": "production"
},
"SENSIBLE_DEFAULTS": "enabled",
"QUEUE_DATABASE_URL": {
"description": "If you're using Solid Queue, configure a database and set this config var.",
"required": false
},
"CACHE_DATABASE_URL": {
"description": "If you're using Solid Cache, configure a database and set this config var.",
"required": false
},
"CABLE_DATABASE_URL": {
"description": "If you're using Solid Cable, configure a database and set this config var.",
"required": false
}
},
"formation": {
"web": {
"quantity": 1,
"size": "basic"
}
},
"image": "heroku/ruby",
"addons": [
// "heroku-postgresql",
"scheduler"
],
"buildpacks": [
{ "url": "https://github.com/heroku/heroku-buildpack-apt.git" },
{ "url": "https://github.com/brandoncc/heroku-buildpack-vips" },
{ "url": "https://github.com/gaffneyc/heroku-buildpack-jemalloc.git" },
{ "url": "heroku/ruby" }
],
"environments": {
"test": {
"env": {
"BUNDLE_WITHOUT": "production"
},
"scripts": {
"test": "bundle exec rails test && bundle exec rspec"
}
}
}
}