#はじめに
railsチュートリアル第3章でherokuへのデプロイを試みました。
しかし、Precompiling assets failed.と表示されてデプロイに失敗しました。
#開発環境
MacBook Pro
プロセッサ2 GHz クアッドコアIntel Core i5
メモリ16GB
cloud9
rails 6.0.3
#作業
$ heroku create
$ git push heroku master
herokuへのデプロイを試みるが失敗。
remote: webpack binstubs not found.
remote: Have you run rails webpacker:install ?
remote: Make sure the bin directory or binstubs are not included in .gitignore
remote: Exiting!
remote:
remote: !
remote: ! Precompiling assets failed.
remote: !
remote: ! Push rejected, failed to compile Ruby app.
remote:
remote: ! Push failed
webpack binstubsが見つかりませんでした。
rails webpacker:install を実行しましたか?との表示がある。
#解決方法
$ rails bundle install
$ rails webpacker:install
bundle installをしてから、rails webpacker:installを実行する。
$ git commit
$ git push heroku master
その後ルートURLにアクセスして、デプロイが成功したことを確認しました。
ご覧いただきありがとうございます。