devrelcollective/xela

View on GitHub
database.yml

Summary

Maintainability
Test Coverage
development:
  dialect: postgres
  database: xela_development
  user: postgres
  password: postgres
  host: 127.0.0.1
  pool: 5

test:
  url: {{envOr "TEST_DATABASE_URL" "postgres://postgres:postgres@127.0.0.1:5432/xela_test?sslmode=disable"}}

production:
  url: {{envOr "DATABASE_URL" "postgres://postgres:postgres@127.0.0.1:5432/xela_production?sslmode=disable"}}