Skip to content

Instantly share code, notes, and snippets.

@carlcrott
Created February 26, 2012 03:34
Show Gist options
  • Save carlcrott/1912785 to your computer and use it in GitHub Desktop.
Save carlcrott/1912785 to your computer and use it in GitHub Desktop.
# composed of code from:
# http://whatcodecraves.com/articles/2008/02/05/setup_rails_with_postgresql/
# http://www.tokumine.com/2009/09/03/jruby-postgres-rails/
common: &common
adapter: jdbcpostgresql
username: oscar
password: XXXXX
host: 127.0.0.1
port: 5432
development:
<<: *common
database: oscarizer
test:
<<: *common
database: oscarizer
production:
<<: *common
database: oscarizer
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment