Skip to content

Instantly share code, notes, and snippets.

@schesnowitz
Created March 2, 2018 09:43
Show Gist options
  • Save schesnowitz/52c2503a306a8a0e71f635e8efd5c3d3 to your computer and use it in GitHub Desktop.
Save schesnowitz/52c2503a306a8a0e71f635e8efd5c3d3 to your computer and use it in GitHub Desktop.
default: &default
adapter: mysql2
encoding: utf8
reconnect: false
pool: 5
timeout: 5000
host: <%= ENV['DATA_DB_HOST'] %>
username: <%= ENV['DATA_DB_USER'] %>
password: <%= ENV['DATA_DB_PASS'] %>
socket: /tmp/mysql.sock
development:
<<: *default
database: rails_development
test:
<<: *default
database: rails_test
production:
<<: *default
database: rails_production
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment