次の手順を実行します。
-
cloud9でpostgresqlの新しいユーザー名とパスワードを作成します:
$ sudo service postgresql start $ sudo sudo -u postgres psql postgres=# CREATE USER username SUPERUSER PASSWORD 'password'; postgres=# \q
-
cloud9でENV変数を作成します:
$ echo "export USERNAME=username" >> ~/.profile $ echo "export PASSWORD=password" >> ~/.profile $ source ~/.profile
cloud9上のrails4.2.0用の私のdatabase.yml:
default: &default adapter: postgresql encoding: unicode pool: 5 username: <%= ENV['USERNAME'] %> password: <%= ENV['PASSWORD'] %> host: <%= ENV['IP'] %> development: <<: *default database: sample_app_development test: <<: *default database: sample_app_test production: <<: *default database: sample_app_production
-
宝石の
pg
を含める Gemfileでインストールします:gem'pg'、'〜> 0.18.2'
$ bundle install
-
template1を更新します cloud9上のdatabase.ymlのpostgresql:
postgres=# UPDATE pg_database SET datistemplate = FALSE WHERE datname = 'template1'; postgres=# DROP DATABASE template1; postgres=# CREATE DATABASE template1 WITH TEMPLATE = template0 ENCODING = 'UNICODE'; postgres=# UPDATE pg_database SET datistemplate = TRUE WHERE datname = 'template1'; postgres=# \c template1 postgres=# VACUUM FREEZE; postgres=# \q
-
コマンドラインから実行:
bundle exec rake db:create