-
-
Save rmros/3e907a3fef3ff05ea92c7aec9c164855 to your computer and use it in GitHub Desktop.
Revisions
-
yshmarov revised this gist
Jan 4, 2018 . 1 changed file with 19 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,19 @@ default: &default adapter: postgresql encoding: unicode pool: 5 username: yaro password: pass host: <%= ENV['IP'] %> development: <<: *default database: myclass110_development test: <<: *default database: myclass110_test production: <<: *default database: myclass110_production -
yshmarov created this gist
Jan 4, 2018 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,18 @@ sudo service postgresql start sudo sudo -u postgres psql CREATE USER yaro SUPERUSER PASSWORD 'pass'; \q echo "export USERNAME=yaro" echo "export PASSWORD=pass" source bundle sudo sudo -u postgres psql UPDATE pg_database SET datistemplate = FALSE WHERE datname = 'template1'; DROP DATABASE template1; CREATE DATABASE template1 WITH TEMPLATE = template0 ENCODING = 'UNICODE'; UPDATE pg_database SET datistemplate = TRUE WHERE datname = 'template1'; \c template1 VACUUM FREEZE; \q bundle exec rake db:create rake db:migrate