I had issues installing Postgres with the instructions in this Railscast. However I was able to get postgres running on my project with http://postgresapp.com/ and http://inductionapp.com/ (Hat tip to this stackoverflow thread).
Download & install Postgres.app (documentation) Make sure to install in /Applications.
Update your PATH
In my case I added the following to ~/.bash_profile export PATH="/Applications/Postgres.app/Contents/MacOS/bin:$PATH"
Check that Postgres.app is being loaded
$ which psql
/Applications/Postgres.app/Contents/MacOS/bin/psql
I had issues installing Postgres with the instructions in this Railscast. However I was able to get postgres running on my project with http://postgresapp.com/ and http://inductionapp.com/ (Hat tip to this stackoverflow thread).
/Applications
.PATH
In my case I added the following to ~/.bash_profile
export PATH="/Applications/Postgres.app/Contents/MacOS/bin:$PATH"
Check that Postgres.app is being loaded
/config/database.yml
bundle exec rake db:create:all
heroku db:pull
NOTE Select the last postgres option in Adapter dropdown
small typo in transcription (ASCIIcast)
/app/sweepers/products_sweeper.rb
should be singular
/app/sweepers/product_sweeper.rb
Ryan thanks for the excellent deployment series.
I'm attempting to deploy to Linode following these recipes and get the following error when I try to cold deploy:
Suggestions in right direction will be greatly appreciated.