24 lines
399 B
YAML
24 lines
399 B
YAML
development:
|
|
host: localhost
|
|
port: 5432
|
|
user: dev_user
|
|
password: dev_pass
|
|
dbname: matching_dev
|
|
pool: 10
|
|
|
|
staging:
|
|
host: staging.db.example.com
|
|
port: 5432
|
|
user: staging_user
|
|
password: staging_pass
|
|
dbname: matching_staging
|
|
pool: 20
|
|
|
|
production:
|
|
host: production.db.example.com
|
|
port: 5432
|
|
user: prod_user
|
|
password: ${DB_PROD_PASSWORD}
|
|
dbname: matching_prod
|
|
pool: 30
|