Created
October 15, 2012 02:44
-
-
Save manfe/3890583 to your computer and use it in GitHub Desktop.
Postgres database.yml example
This file contains 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
development: | |
adapter: postgresql | |
encoding: utf8 | |
reconnect: false | |
host: localhost | |
database: database_development | |
username: username | |
password: password | |
test: | |
adapter: postgresql | |
encoding: utf8 | |
reconnect: false | |
host: localhost | |
database: database_test | |
username: username | |
password: password |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment