Skip to content

Instantly share code, notes, and snippets.

@terenceponce
Created August 27, 2012 05:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save terenceponce/3485803 to your computer and use it in GitHub Desktop.
Save terenceponce/3485803 to your computer and use it in GitHub Desktop.
Rails 3 PostgreSQL sample config
development:
adapter: postgresql
encoding: unicode
database: applicationname_development
host: localhost
pool: 5
username: postgres
password: postgres
test:
adapter: postgresql
encoding: unicode
database: applicationname_test
host: localhost
pool: 5
username: postgres
password: postgres
production:
adapter: postgresql
encoding: unicode
database: applicationname_production
host: localhost
pool: 5
username: postgres
password: postgres
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment