ensl.org/config/database.yml

28 lines
419 B
YAML
Raw Normal View History

base: &db
adapter: mysql2
encoding: utf8
host: <%= ENV['MYSQL_HOST'] %>
database: <%= ENV['MYSQL_DATABASE'] %>
username: <%= ENV['MYSQL_USER'] %>
password: <%= ENV['MYSQL_PASSWORD'] %>
pool: <%= Integer(ENV['MYSQL_CONNECTION_POOL'] || 8) %>
2015-06-11 15:18:51 +00:00
wait_timeout: 90
reconnect: true
development:
<<: *db
2020-04-02 19:50:57 +00:00
staging:
<<: *db
test:
<<: *db
database: ensl_test
staging:
<<: *db
production:
<<: *db