-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
54 lines (52 loc) · 1.36 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": "Jumpstart Pro",
"description": "A Ruby on Rails template for SaaS apps and more",
"website": "https://jumpstartrails.com",
"scripts": {
"postdeploy": "bundle exec rails db:migrate"
},
"env": {
"BUNDLE_WITHOUT": "development:test",
"JEMALLOC_ENABLED": "true",
"MALLOC_ARENA_MAX": "2",
"NODE_MODULES_CACHE": "true",
"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"
},
"formation": {
"web": {
"quantity": 1,
"size": "basic"
}
},
"image": "heroku/ruby",
"addons": [
"heroku-postgresql:mini",
"heroku-redis:mini",
"scheduler:standard"
],
"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/nodejs" },
{ "url": "heroku/ruby" }
],
"environments": {
"test": {
"env": {
"BUNDLE_WITHOUT": "production"
},
"scripts": {
"test": "bundle exec rails test"
}
}
},
"stack": "heroku-22"
}