Last active
October 27, 2016 09:05
-
-
Save chrisedington/85679df2f079ee164649d32948fe4dda to your computer and use it in GitHub Desktop.
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 | |
host: db | |
port: 5432 | |
username: postgres | |
password: <%= ENV['POSTGRES_PASSWORD'] %> | |
development: | |
<<: *default | |
database: your_dev_db_name #CHANGE ME | |
test: | |
<<: *default | |
database: your_test_db_name #CHANGE ME | |
production: | |
<<: *default | |
database: your_production_db_name #CHANGE ME |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment