-
-
Save rmros/3e907a3fef3ff05ea92c7aec9c164855 to your computer and use it in GitHub Desktop.
commands for activating pg (postgresql) for rails on c9.io platform
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 characters
| 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 |
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 characters
| 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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment