42d9a7ba07
Plain ${POSTGRES_PASSWORD} in compose; default 'steward' lives in .env.example
where it's visible and editable rather than buried in compose YAML.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
13 lines
501 B
Bash
13 lines
501 B
Bash
# Copy to .env for Docker / local development secrets
|
|
# These override values in config.yaml
|
|
|
|
STEWARD_SECRET_KEY=change-me
|
|
STEWARD_DATABASE_URL=postgresql+asyncpg://steward:password@localhost/steward
|
|
STEWARD_SMTP__PASSWORD=
|
|
|
|
# --- compose.deploy.yml (remote instance) only ---
|
|
# Password for the bundled Postgres; the steward service builds its
|
|
# STEWARD_DATABASE_URL from it. Leave STEWARD_SECRET_KEY above unset to let the
|
|
# app generate + persist one on the /data volume.
|
|
POSTGRES_PASSWORD=steward
|