Skip to content

Instantly share code, notes, and snippets.

@tushartuteja
Created December 15, 2018 16:48
Show Gist options
  • Select an option

  • Save tushartuteja/001a33929f6486bc04adb3fdb2ce3f0c to your computer and use it in GitHub Desktop.

Select an option

Save tushartuteja/001a33929f6486bc04adb3fdb2ce3f0c 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
encoding: unicode
host: db
username: postgres
password:
pool: 5
development:
<<: *default
database: myapp_development
test:
<<: *default
database: myapp_test
production:
<<: *default
database: myapp_production
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment