Skip to content

Instantly share code, notes, and snippets.

@chrisedington
Last active October 27, 2016 09:05
Show Gist options
  • Save chrisedington/85679df2f079ee164649d32948fe4dda to your computer and use it in GitHub Desktop.
Save chrisedington/85679df2f079ee164649d32948fe4dda to your computer and use it in GitHub Desktop.
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