# Secrets — NEVER commit. Only .env.example is tracked. .env .env.* !.env.example # Python __pycache__/ *.py[cod] *$py.class *.egg-info/ .eggs/ build/ dist/ *.so # Virtualenvs / uv .venv/ venv/ .python-version # Type / lint / test caches .mypy_cache/ .ruff_cache/ .pytest_cache/ .coverage .coverage.* htmlcov/ coverage.xml .tox/ # Docker *.pid # Editor / OS .idea/ .vscode/ *.swp *~ .DS_Store Thumbs.db