Skip to content

Instantly share code, notes, and snippets.

@klebershimabuku
Created October 28, 2012 02:34
Show Gist options
  • Save klebershimabuku/3967231 to your computer and use it in GitHub Desktop.
Save klebershimabuku/3967231 to your computer and use it in GitHub Desktop.
Example of database.yml for Postgresql
development: &common
adapter: postgresql
database: project_development
username: postgres
password: <your_password>
host: localhost
test:
<<: *common
database: project_test
production:
<<: *common
database: project_production
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment