Skip to content

Instantly share code, notes, and snippets.

@FedericoCapaldo
Created October 10, 2015 10:46
Show Gist options
  • Save FedericoCapaldo/bdb3827b182be8553fbe to your computer and use it in GitHub Desktop.
Save FedericoCapaldo/bdb3827b182be8553fbe to your computer and use it in GitHub Desktop.
# SQLite version 3.x
# gem install sqlite3
#
# Ensure the SQLite 3 gem is defined in your Gemfile
# gem 'sqlite3'
#
default: &default
adapter: postgresql
pool: 5
host: localhost
username: andrei
password:
timeout: 5000
development:
<<: *default
database: badger_dev
# Warning: The database defined as "test" will be erased and
# re-generated from your development database when you run "rake".
# Do not set this db to the same as development or production.
test:
<<: *default
database: badger_test
production:
<<: *default
database: badger_production
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment