1
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

herokuへのデプロイが失敗する Precompiling assets failed.

Posted at

#はじめに
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にアクセスして、デプロイが成功したことを確認しました。
ご覧いただきありがとうございます。

1
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?