Files
sortof/.gitignore

53 lines
794 B
Plaintext

# Secrets / runtime config
.env
.env.local
.env.*.local
# Python virtualenvs (api/.venv, worker/.venv, etc.)
.venv/
venv/
env/
# Python bytecode caches
__pycache__/
*.py[cod]
*$py.class
.pytest_cache/
.mypy_cache/
.ruff_cache/
# Local ad-hoc backups (.bak / .bak-YYYYMMDD-HHMM / .bak-<label>)
*.bak
*.bak-*
# Operational DB dumps (pg_dump output kept locally for rollback)
backups/
# Editor / IDE / OS artifacts
*.swp
*.swo
*~
.DS_Store
Thumbs.db
.idea/
.vscode/
.claude/
# Logs
*.log
*.log.*
logs/
# DepotDownloader scratch dirs
depots/
.DepotDownloader/
# Postgres bind-mount data dir (if anyone ever switches off the named volume)
postgres_data/
data/postgres/
# Node (defensive — not used today, but headoff if a build step shows up)
node_modules/
npm-debug.log*
yarn-error.log*