Rails app moved to production server gives “dump format error for symbol” error

前端 未结 6 1136
粉色の甜心
粉色の甜心 2021-02-12 15:41

I\'ve just moved my rails app from the development to deployment server. I\'ve installed passenger, but I wanted to try with rails s to make sure all was running fi

6条回答
  •  粉色の甜心
    2021-02-12 16:13

    I ran into the same issue when I removed a bunch of unused .coffee files from my assets.

    I resolved the issue by running:

    bundle exec rake assets:precompile RAILS_ENV=
    

    And then restarting the server.

提交回复
热议问题