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.
53 lines
599 B
Plaintext
53 lines
599 B
Plaintext
# Planning files
|
|
docs/superpowers/
|
|
|
|
# Plugin directory — managed as a separate repo (bvandeusen/roundtable-plugins)
|
|
# PLUGIN_DIR in config.yaml points here at runtime
|
|
/plugins/
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*.pyo
|
|
*.pyd
|
|
.Python
|
|
*.egg-info/
|
|
dist/
|
|
build/
|
|
*.egg
|
|
.eggs/
|
|
.pytest_cache/
|
|
.coverage
|
|
htmlcov/
|
|
|
|
# Virtual environments
|
|
.venv/
|
|
venv/
|
|
env/
|
|
|
|
# Secrets / local config (use config.example.yaml as template)
|
|
.env
|
|
*.env.local
|
|
config.yaml
|
|
|
|
# Database
|
|
*.db
|
|
*.sqlite3
|
|
|
|
# Logs
|
|
*.log
|
|
logs/
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Editor
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
|
|
# Playbook cache (runtime data)
|
|
playbook_cache/
|