ensl.org/config/database.yml
2015-06-11 17:18:51 +02:00

24 lines
388 B
YAML

base: &db
adapter: mysql2
encoding: utf8
host: localhost
database: <%= ENV['MYSQL_DATABASE'] %>
username: <%= ENV['MYSQL_USERNAME'] %>
password: <%= ENV['MYSQL_PASSWORD'] %>
pool: <%= Integer(ENV['MYSQL_CONNECTION_POOL'] || 8) %>
wait_timeout: 90
reconnect: true
development:
<<: *db
test:
<<: *db
database: ensl_test
staging:
<<: *db
production:
<<: *db