Codeminer42/cm42-central

View on GitHub
config/database.yml.example

Summary

Maintainability
Test Coverage
# PostgreSQL
base: &base
  host: <%= ENV['DB_HOST'] %>
  adapter: postgresql
  encoding: unicode
  pool: 5
  username: <%= ENV['DB_USERNAME'] %>
  password: <%= ENV['DB_PASSWORD'] %>

development:
  <<: *base
  database: fulcrum_development

test:
  <<: *base
  database: fulcrum_test

production:
  <<: *base
  database: fulcrum_production