# Python
__pycache__/
*.py[cod]
*.egg-info/
.eggs/
build/
dist/
.venv/
venv/
env/

# Secrets / local config
.env
connections.json
kb_server.json

# IDE
.vscode/
.idea/
.DS_Store

# Snapshot dumps (business data)
snapshots/

# Playwright debug screenshots
playwright/shots/

# Credential files — the bare name was not enough. A connections.json.bak-<date>
# backup (written by the config editor) slipped past `connections.json` and was
# committed to a PUBLIC repo on 2026-07-27. Match every variant, not the one name.
connections.json*
kb_server.json*
*.bak
*.bak-*
.env
