Last active
December 10, 2015 18:38
-
-
Save AquaGeek/4476360 to your computer and use it in GitHub Desktop.
Postgres
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
| # Create the user | |
| createuser -P --interactive # Enter the values asked | |
| # Create the DBs | |
| createdb -O {username created above} {database name} | |
| # Install pg gem | |
| bundle config build.pg --with-pg-config={path to pg_config} | |
| bundle install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment