forked from coderdojo-japan/coderdojo.jp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
36 lines (36 loc) · 974 Bytes
/
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
{
"name": "CoderDojo Japan - 子どものためのプログラミング道場",
"description": "Settings for Heroku Review Apps",
"keywords": ["Ruby", "Ruby on Rails", "CoderDojo"],
"website": "https://coderdojo.jp/",
"repository": "https://github.com/coderdojo-japan/coderdojo.jp",
"logo": "https://coderdojo.jp/logo.png",
"addons": [
"logtail",
"heroku-postgresql",
"scheduler"
],
"environments": {
"review": {
"addons": ["heroku-postgresql:mini"]
}
},
"buildpacks": [
{
"url": "heroku/ruby"
}
],
"env": {
"RACK_ENV": "staging",
"RAILS_ENV": "staging"
},
"formation": {
"web": {
"quantity": 1
}
},
"scripts": {
"postdeploy": "bundle exec rails db:schema:load && bundle exec rails db:seed && bundle exec rails dojos:update_db_by_yaml && bundle exec rails dojo_event_services:upsert && bundle exec rails assets:precompile RAILS_ENV=staging"
},
"stack": "heroku-22"
}