I have a rails application that uses Devise for auth user. In localhost: 3000, my site is working fine. I can register, login, etc. However, when I git push heroku and try to register or login, I just get a 500 error.
Some specifications of my site: I use sqlite (I heard that this could be a problem) and changed the route / users / sign_up to / sign and / users / sign_in to / login . My /configure/environments/development.rb has the code config.action_mailer.default_url_options = { :host => 'localhost:3000' } and /configure/environments/production.rb has the code config.action_mailer.default_url_options = { :host => 'myPersonalApp.heroku.com' }
What is wrong that causes a 500 error only on the hero?
source share