-
-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update app.json for review apps (#4010)
- Loading branch information
1 parent
77112b6
commit d0ef5d5
Showing
1 changed file
with
27 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,47 +1,56 @@ | ||
{ | ||
"name": "Website, by CrimethInc.", | ||
"description": "Rails app that powers crimethinc.com", | ||
"keywords": [ | ||
"indieweb", | ||
"publishing", | ||
"rubyonrails", | ||
"rails" | ||
], | ||
|
||
"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": { | ||
"SECRET_KEY_BASE": { | ||
"RAILS_MASTER_KEY": { | ||
"description": "This gets generated", | ||
"generator": "secret" | ||
"generator": "secret" | ||
}, | ||
|
||
"MIN_THREADS": "1", | ||
"MAX_THREADS": "1" | ||
"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": [ | ||
"heroku-postgresql:hobby-dev" | ||
{ | ||
"plan": "heroku-postgresql:essential-0", | ||
"options": { | ||
"version": "15" | ||
} | ||
} | ||
], | ||
|
||
"environments": { | ||
"test": { | ||
"review": { | ||
"buildpacks": [ | ||
{ "url": "heroku://github.com/gaffneyc/heroku-buildpack-jemalloc" }, | ||
{ "url": "heroku/ruby" }, | ||
{ "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": "https://github.com/heroku/heroku-buildpack-activestorage-preview" } | ||
{ "url": "heroku/ruby" } | ||
] | ||
} | ||
}, | ||
|
||
"stack": "heroku-22" | ||
"stack": "heroku-24" | ||
} |