Yogesh
Yogesh

Reputation: 21

Unable to see Ruby on Rails App deployed on Heroku?

I have successfully deployed Ruby on Rails app on Heroku. But when I visit the URL given by Heroku, error says: "The page you were looking for doesn't exist."

URL - https://cryptic-waters-2558.herokuapp.com/

Please help.

Upvotes: 0

Views: 295

Answers (1)

Marek Lipka
Marek Lipka

Reputation: 51171

Your application is up and running, since the error message comes from Webrick. Probable cause of this error is lack of some initial data (maybe you forgot to run heroku run rake db:seed), which causes ActiveRecord::RecordNotFound error. You can check this easily with heroku logs or heroku logs -t, which works similar to tail -f.

Upvotes: 3

Related Questions