default: &default
adapter: postgresql
encoding: unicode
pool: 50
host: <%= ENV.fetch("POSTGRES_HOST", "localhost") %>
port: <%= ENV.fetch("POSTGRES_PORT", "5432") %>
database: <%= ENV.fetch("POSTGRES_DATABASE", "esm_development") %>
username: <%= ENV.fetch("POSTGRES_USERNAME", "esm") %>
password: <%= ENV.fetch("POSTGRES_PASSWORD", "password12345") %>
development:
!!merge <<: *default
database: esm_development
test:
!!merge <<: *default
adapter: postgresql
database: esm_test
arma_test:
!!merge <<: *default
adapter: mysql2
encoding: utf8mb4
host: "127.0.0.1"
port: "3306"
username: root
database: exile_esm
password: "password12345"
database_tasks: false
production:
!!merge <<: *default