git push heroku everything is fine, then heroku open - but it is only the rails landing page that shows. When I try rails s my home page is loaded perfectly. I deleted the public/index.html and commited/pushed changes to github. What could be causing this?
routes.rb:
Oxenblog::Application.routes.draw do root :to => 'static_pages#about' match '/about', to: 'static_pages#about' match '/contact', to: 'static_pages#contact' match '/projects', to: 'static_pages#projects' I think it is a problem with what I am doing with heroku, because it looks fine in localhost...
it is something with the git branches. I have added commited and pushed to both github and heroku , and Everything is up to date . however heroku open is still showing the rails landing page, very frustrating. I am on the master branch, this is a newish project so I have yet to make any new branches.
masterbranch?On branch master # Your branch is ahead of 'origin/master' by 1 commit.then I didgit push origin master- still same rails landing pagegit push heroku master?Everything up-to-date- yet still shows the rails page, very confusing...