Skip to content

Instantly share code, notes, and snippets.

@phlipper
Created August 3, 2012 22:38
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 phlipper/3252247 to your computer and use it in GitHub Desktop.
Save phlipper/3252247 to your computer and use it in GitHub Desktop.
Examples from Coderwall Protip: Install PostgreSQL 9.2 on OS X Mountain Lion
development:
adapter: postgresql
encoding: unicode
host: localhost
database: myapp_development
username: <%= ENV["USER"] %>
password:
allow_concurrency: true
pool: 5
min_messages: warning
test:
adapter: postgresql
encoding: unicode
host: localhost
database: myapp_test
username: <%= ENV["USER"] %>
password:
allow_concurrency: true
pool: 5
min_messages: error
source :rubygems
gem "rails"
gem "pg"
# ...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment