To test render.com I am currently trying to deploy my Rails 7 App on the Free Plan. The Deployment itself is running fine. But after accessing the Application, I am getting a “500 Internal Server error”.
Looking at the logs, this seems to be, because it cannot serve the static assets:
ActionView::Template::Error (The asset “image.png” is not present in the asset pipeline.
I was following the Guides.
My built command looks the following:
bundle install; bundle exec rake assets:precompile; bundle exec rake assets:clean; bundle exec rails db:migrate;
Is there anything else, which I need to consider?