I was referred to Heroku for Ruby on Rails hosting and so far I think I am really going to like it. Just wondering if I anyone out there can help me figure out what is wrong.
I follow there instructions for creating an app on there site, create and commit git, push the code and it shows up at http://mylifebattlecry.heroku.com (though the bulk of what I have done is in the /posts/ path) When I go to enter a new "post" (because this is kind of a blog platform) I get the 500.html error and essentially everything shuts down. Can't even get back to the page that I entered the post.
Seems to me something is wrong with the database set up. I did as they suggested including ...$ heroku rake db:migrate, and nothing.
Just wondering if anyone knows off hand what I am doing wrong. Here are the instructions they give for reference:
Install the Heroku gem:sudo gem install herokuCreate a new git repository for your app (if you haven't already):
cd myapp
git init && git add . && git commit -m "first commit"
Create a new Heroku app:
heroku create
Created http://sharp-autumn-42.com/ | [email protected]:sharp-autumn-42.git
Git remote heroku added
NOTE: The app's name is generated automatically; don't worry, you can rename it at any time.
Deploy your code:
git push heroku master
Run migrations (or other bootstrap tasks):
heroku rake db:migrate
Open the deployed app in your browser: heroku open
Here is the ..$ heroku logs if it helps:
brandon-gadocis-macbook-pro:mylifebattlecry bgadoci$ heroku logs -app mylifebattlecry
==> dyno-629271.log <==
==> production.log <==
# Logfile created on Sun Nov 22 18:26:06 -0800 2009
Processing PostsController#index (for 99.7.50.140 at 2009-11-22 18:26:07) [GET]
Rendering template within layouts/posts
Rendering posts/index
ActionView::TemplateError (PGError: ERROR: column votes.post_id does not exist
LINE 1: SELECT count(*) AS count_all FROM "votes" WHERE ("votes".pos...
^
: SELECT count(*) AS count_all FROM "votes" WHERE ("votes".post_id = 1) ) on line #58 of app/views/posts/index.html.erb:
55: </div>
56: <div id="vote"><br/>
57: <div id="votes">
58: <%= pluralize post.votes.count, 'Person' %> like the above BattleCry. <br/>
59: </div>
60: <%= link_to "Comments (#{post.comments.count})", post %>
61: </div>
app/views/posts/index.html.erb:58
app/views/posts/index.html.erb:51
app/views/posts/index.html.erb:45:in `each'
app/views/posts/index.html.erb:45
app/controllers/posts_controller.rb:11:in `index'
/home/heroku_rack/lib/static_assets.rb:9:in `call'
/home/heroku_rack/lib/last_access.rb:25:in `call'
/home/heroku_rack/lib/date_header.rb:14:in `call'
thin (1.0.1) lib/thin/connection.rb:80:in `pre_process'
thin (1.0.1) lib/thin/connection.rb:78:in `catch'
thin (1.0.1) lib/thin/connection.rb:78:in `pre_process'
thin (1.0.1) lib/thin/connection.rb:57:in `process'
thin (1.0.1) lib/thin/connection.rb:42:in `receive_data'
eventmachine (0.12.6) lib/eventmachine.rb:240:in `run_machine'
eventmachine (0.12.6) lib/eventmachine.rb:240:in `run'
thin (1.0.1) lib/thin/backends/base.rb:57:in `start'
thin (1.0.1) lib/thin/server.rb:150:in `start'
thin (1.0.1) lib/thin/controllers/controller.rb:80:in `start'
thin (1.0.1) lib/thin/runner.rb:173:in `send'
thin (1.0.1) lib/thin/runner.rb:173:in `run_command'
thin (1.0.1) lib/thin/runner.rb:139:in `run!'
thin (1.0.1) bin/thin:6
/usr/local/bin/thin:20:in `load'
/usr/local/bin/thin:20
Rendering /disk1/home/slugs/88382_601a216_9803/mnt/public/500.html (500 Internal Server Error)