18 lines
281 B
YAML
18 lines
281 B
YAML
# Application Configuration
|
|
|
|
# Database Settings
|
|
database:
|
|
host: ${DB_HOST}
|
|
port: ${DB_PORT}
|
|
user: ${DB_USER}
|
|
password: ${DB_PASSWORD}
|
|
name: ${DB_NAME}
|
|
|
|
# Logging Settings
|
|
log:
|
|
level: ${LOG_LEVEL}
|
|
|
|
logging:
|
|
level: ${LOG_LEVEL:-info}
|
|
encoding: ${LOG_ENCODING:-json}
|