Skip to content

Instantly share code, notes, and snippets.

@vanderhoop
Last active December 25, 2015 18:59
Show Gist options
  • Select an option

  • Save vanderhoop/7025007 to your computer and use it in GitHub Desktop.

Select an option

Save vanderhoop/7025007 to your computer and use it in GitHub Desktop.
development:
adapter: postgresql
encoding: unicode
database: <%= File.basename(Rails.root) %>_development
pool: 5
host: localhost
username: <%= ENV['PG_USERNAME'] %>
password:
test:
adapter: postgresql
encoding: unicode
database: <%= File.basename(Rails.root) %>_test
pool: 5
host: localhost
username: <%= ENV['PG_USERNAME'] %>
password:
production:
adapter: postgresql
encoding: unicode
database: <%= File.basename(Rails.root) %>_production
pool: 5
username: <%= ENV['PG_USERNAME'] %>
password:
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment