mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-11-15 01:11:23 +00:00
704a6b4e9b
Changed login field text Changed database configuration connection pool size to be configured via dotenv Use a single BBcode parser library Added better translations coverage Code formatting Increases maximum article text limit Added database cleaner with the deletion strategy during testing
21 lines
350 B
YAML
21 lines
350 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) %>
|
|
|
|
development:
|
|
<<: *db
|
|
|
|
test:
|
|
<<: *db
|
|
database: ensl_test
|
|
|
|
staging:
|
|
<<: *db
|
|
|
|
production:
|
|
<<: *db
|