PostgreSQLをhomebrewでインストールしました:
$ brew install postgresql
私はpggemを次のようにインストールしました:
$ gem install pg -- --with-pg-config= '/usr/local/var/postgres/postgresql.conf'
アプリのdatabase.ymlをに変更しました
development:
adapter: postgresql
encoding: unicode
database: rails_dev
pool: 5
username: vise890
password:
test:
adapter: postgresql
encoding: unicode
database: rails_test
pool: 5
username: vise890
password:
production:
adapter: postgresql
encoding: unicode
database: ddb
port: 5432
pool: 5
username: postgres
password: admin
ただし、ページをロードするたびにエラーが発生します。
ActiveRecord::ConnectionNotEstablished
pgAdmin(u:vise890 P:{none})を使用してデータベースに接続でき、データベースが表示されます。
RubyonRailsチュートリアルのexample3を実行しています
全体を確認したい場合:サンプルアプリのgithubブランチ
よろしくお願いします!