reporter-app/database.yml
Joeri Jungschlager b3ef85ef95 initial commit
2021-12-27 10:57:30 +01:00

15 lines
325 B
YAML

default: &default
adapter: postgresql
encoding: unicode
host: database
username: <%= ENV.fetch("POSTGRES_USER") %>
password: <%= ENV.fetch("POSTGRES_PASSWORD") %>
pool: <%= ENV.fetch("RAILS_MAX_THREADS") { 5 } %>
development:
<<: *default
database: ror_development
test:
<<: *default
database: ror_test