I'm currently doing Michael Hartl's RoR tutorial, and although I've followed the instructions carefully, my app doesn't deploy to heroku properly. Help.
My Gemfile looks like this
source 'https://rubygems.org'
ruby '1.9.3'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
#ruby-gemset=railstutorial_rails_4_0
gem 'rails', '4.0.0'
group :development, :test do
gem 'sqlite3', '1.3.7'
gem 'rspec-rails', '2.13.1'
end
group :test do
gem 'selenium-webdriver', '2.0.0'
gem 'capybara', '2.1.0'
end
gem 'sass-rails', '4.0.0'
gem 'uglifier', '2.1.1'
gem 'coffee-rails', '4.0.0'
gem 'jquery-rails', '2.2.1'
gem 'turbolinks', '1.1.1'
gem 'jbuilder', '1.0.2'
group :doc do
gem 'sdoc', '0.3.20', require: false
end
group :production do
gem 'pg', '0.15.1'
gem 'rails_12factor', '0.0.2'
end
And I've typed in the following commands:
$ heroku create
$ git push heroku master
$ heroku run rake db:migrate
yet, my ending result looks like this: http://warm-wildwood-5691.herokuapp.com/ " The page you were looking for doesn't exist. "
these are my heroku logs
2013-07-19T19:21:15.363798+00:00 heroku[router]: at=info code= desc="Blank app" method=GET path=/ host=safe-ridge-7992.herokuapp.com fwd="190.72.80.97" dyno= connect= service= status=502 bytes=
2013-07-19T19:21:16.733481+00:00 heroku[router]: at=info code= desc="Blank app" method=GET path=/favicon.ico host=safe-ridge-7992.herokuapp.com fwd="190.72.80.97" dyno= connect= service= status=502 bytes=
2013-07-19T19:21:36+00:00 heroku[slug-compiler]: Slug compilation started
2013-07-19T19:24:23.872947+00:00 heroku[router]: at=info method=GET path=/favicon.ico host=safe-ridge-7992.herokuapp.com fwd="190.72.80.97" dyno=web.1 connect=2ms service=7ms status=200 bytes=0
Help?
heroku open
. What's the output ofgit remote -v
? – cortex