0596f1d9c1
Sweeps README, docs/, example configs, code docstrings, report and notification subject lines, plugin catalog URL default, and stray comments in Dockerfile/entrypoint.sh/.gitignore. Adds a legacy note to docs/core/configuration.md explaining the FABLEDSCRYER_* fallback. docker-compose DB credentials intentionally left as fabledscryer to preserve the existing pgdata volume.
22 lines
784 B
YAML
22 lines
784 B
YAML
# Roundtable — Bootstrap Configuration Example
|
|
#
|
|
# The only REQUIRED setting is the database URL.
|
|
# Set it via env var (recommended for Docker):
|
|
#
|
|
# ROUNDTABLE_DATABASE_URL=postgresql+asyncpg://user:pass@host/db
|
|
#
|
|
# All other settings (SMTP, webhook, ansible, plugins, retention)
|
|
# are stored in the database and managed via the Settings UI at /settings/.
|
|
#
|
|
# config.yaml is optional. Use it only if you prefer file-based bootstrap.
|
|
|
|
database:
|
|
url: "postgresql+asyncpg://roundtable:password@localhost/roundtable"
|
|
|
|
# Optional: override the auto-generated secret key.
|
|
# If not set, a key is auto-generated on first run and saved to /data/secret.key.
|
|
# secret_key: "change-me-to-a-random-string"
|
|
|
|
# Optional: path to plugin directory (default: "plugins")
|
|
# plugin_dir: "./plugins"
|