matching_app/configs/database.yaml
2025-05-02 15:12:18 +07:00

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