A space to discuss online store customization, theme development, and Liquid templating.
Hello,
I have successfully deployed to Heroku a newly created and almost empty shopify App.
When installing it to a test devstore, I get the rails 5OO error screen embedded on the admin panel.
I have absolutely no info in my logs.
I have tried the following :
Any kind of help would be appreciated !
Thanks !!
Hi Pur100,
Here are a few things you can try:
Check Heroku Logs: You can use the command heroku logs --tail
in your terminal to see real-time logs for your app. This may provide more information about the error you're encountering.
Check Database: If your app uses a database, ensure that it is properly set up and connected. Errors can often occur from a misconfigured database.
Check Heroku Dynos: Ensure that at least one dyno is. You can check this in your Heroku dashboard or with the heroku ps
command.
Check App Dependencies: Ensure all your app's dependencies are included in the Gemfile and installed via bundle install.
Check for Asset Compilation Issues: If your app uses assets (such as JavaScript or CSS files), ensure they're being compiled correctly during the deployment process.
Try Running Locally in Production Mode: Attempt to replicate the production environment locally by running RAILS_ENV=production rails server
. This may help to identify any configuration issues specific to the production environment.
Try the above and let us know if you're still seeing issues.
Liam | Developer Advocate @ Shopify
- Was my reply helpful? Click Like to let me know!
- Was your question answered? Mark it as an Accepted Solution
- To learn more visit Shopify.dev or the Shopify Web Design and Development Blog