Skip to content

Commit d0ef5d5

Browse files
1 parent 77112b6 commit d0ef5d5

File tree

1 file changed

+27
-18
lines changed

1 file changed

+27
-18
lines changed

app.json

+27-18
Original file line numberDiff line numberDiff line change
@@ -1,47 +1,56 @@
11
{
22
"name": "Website, by CrimethInc.",
33
"description": "Rails app that powers crimethinc.com",
4-
"keywords": [
5-
"indieweb",
6-
"publishing",
7-
"rubyonrails",
8-
"rails"
9-
],
10-
4+
"keywords": ["indieweb", "publishing", "rubyonrails", "rails"],
115
"website": "https://crimethinc.com",
126
"repository": "https://github.com/crimethinc/website",
137
"logo": "https://avatars0.githubusercontent.com/u/21285375",
14-
158
"success_url": "/",
169

1710
"scripts": {
1811
"postdeploy": "bundle exec rake db:migrate && bundle exec rake db:seed"
1912
},
2013

2114
"env": {
22-
"SECRET_KEY_BASE": {
15+
"RAILS_MASTER_KEY": {
2316
"description": "This gets generated",
24-
"generator": "secret"
17+
"generator": "secret"
2518
},
2619

27-
"MIN_THREADS": "1",
28-
"MAX_THREADS": "1"
20+
"RAILS_MIN_THREADS": "1",
21+
"RAILS_MAX_THREADS": "5",
22+
"WEB_CONCURRENCY": {
23+
"description": "The number of processes to run.",
24+
"value": "3"
25+
}
26+
},
27+
28+
"formation": {
29+
"web": {
30+
"quantity": 1,
31+
"size": "basic"
32+
}
2933
},
3034

3135
"addons": [
32-
"heroku-postgresql:hobby-dev"
36+
{
37+
"plan": "heroku-postgresql:essential-0",
38+
"options": {
39+
"version": "15"
40+
}
41+
}
3342
],
3443

3544
"environments": {
36-
"test": {
45+
"review": {
3746
"buildpacks": [
38-
{ "url": "heroku://github.com/gaffneyc/heroku-buildpack-jemalloc" },
39-
{ "url": "heroku/ruby" },
47+
{ "url": "https://github.com/gaffneyc/heroku-buildpack-jemalloc" },
48+
{ "url": "https://github.com/heroku/heroku-buildpack-activestorage-preview" },
4049
{ "url": "https://github.com/heroku/heroku-buildpack-apt" },
41-
{ "url": "https://github.com/heroku/heroku-buildpack-activestorage-preview" }
50+
{ "url": "heroku/ruby" }
4251
]
4352
}
4453
},
4554

46-
"stack": "heroku-22"
55+
"stack": "heroku-24"
4756
}

0 commit comments

Comments
 (0)