Created
June 10, 2015 17:19
-
-
Save monkseal/3b9aac875eee50cae9c8 to your computer and use it in GitHub Desktop.
Modified database.yml with different postgres port
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: utf8 | |
min_messages: warning | |
port: 15432 | |
pool: 5 | |
username: blog_user | |
password: blog_user91x91x | |
host: 127.0.0.1 | |
development: | |
<<: *default | |
database: blog_development | |
test: | |
<<: *default | |
database: blog_test | |
production: | |
<<: *default | |
database: blog_production |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment