Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save LuisErnestoZamb/43804ca1c1ebc3d05bf32c55e55b8671 to your computer and use it in GitHub Desktop.
Save LuisErnestoZamb/43804ca1c1ebc3d05bf32c55e55b8671 to your computer and use it in GitHub Desktop.
database.yml
default: &default
adapter: <%= ENV["DB_ADAPTER"] || "mysql2" %>
encoding: utf8
url: <%= ENV["DATABASE_URL"] %>
pool: <%= ENV["DB_POOL"] || 5 %>
checkout_timeout: <%= ENV["DB_TIMEOUT"] || 5 %>
reconnect: true
development:
<<: *default
staging:
<<: *default
test:
adapter: sqlite3
database: db/test.sqlite3
production:
<<: *default
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment