So I've got my rails app on a linode box using capistrano and rvm in the app, with nginx, postgres, and Ubuntu 13.04 on the server.
My app is the one from the teamtreehouse tutorial. See it on heroku here.
Using the tutorial here, I was able to cap deploy:cold
.
Now I'm getting the fateful "We're sorry, something went wrong" 500 page. Usually that's a database problem?
First question: How do I find out what the root of this problem is? In the shared/production.log I see my migrations went through:
Connecting to database specified by database.yml
Migrating to CreateStatuses (20120718214245)
...(and so on until
Migrating to AddAvatarToUsers (20130505213153)
Nothing after that.
Second question: I went to check what's in my database and the answer is nothing besides the tables. That is, my seeds.rb file did not get added. Maybe that will solve my problem? If it does, I'm curious why.
Let me know!