Skip to content

Instantly share code, notes, and snippets.

@embs
Created September 12, 2012 18:24
Show Gist options
  • Save embs/3708848 to your computer and use it in GitHub Desktop.
Save embs/3708848 to your computer and use it in GitHub Desktop.
PostgreSQL rails database configuration FTW
common: &common
adapter: postgresql
username: matheus
password: # from psql setup, see Postgresql
development:
<<: *common
database: chatlogger_development
test:
<<: *common
database: chatlogger_test
production:
<<: *common
database: chatlogger_production
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment