Files
FabledSteward/.env.example
T
bvandeusen ef6c90c022
CI / lint (push) Successful in 2s
CI / unit (push) Successful in 7s
CI / integration (push) Successful in 2m14s
CI / publish (push) Successful in 5s
Revert "fix(deploy): move POSTGRES_PASSWORD default into .env.example"
This reverts commit 42d9a7ba07.
2026-06-05 11:25:31 -04:00

13 lines
503 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=change-me