-
-
Notifications
You must be signed in to change notification settings - Fork 31
/
app.json
56 lines (49 loc) · 1.28 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
55
56
{
"name": "Website, by CrimethInc.",
"description": "Rails app that powers crimethinc.com",
"keywords": ["indieweb", "publishing", "rubyonrails", "rails"],
"website": "https://crimethinc.com",
"repository": "https://github.com/crimethinc/website",
"logo": "https://avatars0.githubusercontent.com/u/21285375",
"success_url": "/",
"scripts": {
"postdeploy": "bundle exec rake db:migrate && bundle exec rake db:seed"
},
"env": {
"RAILS_MASTER_KEY": {
"description": "This gets generated",
"generator": "secret"
},
"RAILS_MIN_THREADS": "1",
"RAILS_MAX_THREADS": "5",
"WEB_CONCURRENCY": {
"description": "The number of processes to run.",
"value": "3"
}
},
"formation": {
"web": {
"quantity": 1,
"size": "basic"
}
},
"addons": [
{
"plan": "heroku-postgresql:essential-0",
"options": {
"version": "15"
}
}
],
"environments": {
"review": {
"buildpacks": [
{ "url": "https://github.com/gaffneyc/heroku-buildpack-jemalloc" },
{ "url": "https://github.com/heroku/heroku-buildpack-activestorage-preview" },
{ "url": "https://github.com/heroku/heroku-buildpack-apt" },
{ "url": "heroku/ruby" }
]
}
},
"stack": "heroku-24"
}