I was trying to push a Rails app including active_admin
to Heroku.
I expect to be able to log into Active Admin after pushing to Heroku
I have built a Rails app using active_admin
. First I tried it on my localhost
. I logged in with admin@example.com
, set a new admin, and deleted the admin@example.com
user. Then I pushed my app to GitHub and further to Heroku. I noticed Active Admin was not reachable on Heroku so I checked the logs and ran heroku rake db:migrate
. Now I can switch to the login site at /admin
but I cannot login. Neither with the admin@example.com
nor my newly-created admin.
How can I fix this?