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.PATHIn 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.ymldevelopment: adapter: postgresql encoding: unicode database: myapp_development pool: 5 host: localhostbundle exec rake db:create:allheroku db:pullNOTE Select the last postgres option in Adapter dropdown
small typo in transcription (ASCIIcast)
/app/sweepers/products_sweeper.rbshould be singular
/app/sweepers/product_sweeper.rbRyan 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.