From 5d2204934b9d50d7ed5689df9661bac36b8ca80e Mon Sep 17 00:00:00 2001 From: AnaTofuZ Date: Wed, 15 May 2019 21:48:27 +0900 Subject: [PATCH] =?UTF-8?q?Asset=20Pipeline=E3=81=AE=E3=83=97=E3=83=AA?= =?UTF-8?q?=E3=82=B3=E3=83=B3=E3=83=91=E3=82=A4=E3=83=AB=E5=AE=9F=E8=A1=8C?= =?UTF-8?q?=E3=82=92app.json=E3=81=AB=E8=BF=BD=E5=8A=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 画像が読み込まれていないエラーが発生していた為 ( cf. #369) プリコンパイルを手動で実行するように追記した --- app.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.json b/app.json index 02d4ef1ca..4357260ce 100644 --- a/app.json +++ b/app.json @@ -80,7 +80,7 @@ }, "name": "coderdojo.jp", "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" + "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-18" }