ensl.org/config/database.yml
Luke Barratt 28fb2cc64d Updated production config
Updated .env and database.yml
2014-03-26 11:12:00 +00:00

22 lines
331 B
YAML

base: &db
adapter: mysql2
encoding: utf8
pool: 5
host: localhost
database: <%= ENV['MYSQL_DATABASE'] %>
username: <%= ENV['MYSQL_USERNAME'] %>
password: <%= ENV['MYSQL_PASSWORD'] %>
development:
<<: *db
database: ensl_development
test:
<<: *db
database: ensl_test
staging:
<<: *db
production:
<<: *db