# Environment and secrets .env .env.* !.env.example # Virtual environments .venv/ venv/ ENV/ env/ # Python __pycache__/ *.py[cod] *$py.class *.so .Python build/ develop-eggs/ dist/ downloads/ eggs/ .eggs/ lib/ lib64/ parts/ sdist/ var/ wheels/ share/python-wheels/ *.egg-info/ .installed.cfg *.egg MANIFEST # Testing / coverage .pytest_cache/ .coverage .coverage.* htmlcov/ .tox/ .nox/ coverage.xml *.cover .hypothesis/ # Type checkers / linters .mypy_cache/ .ruff_cache/ .dmypy.json dmypy.json .pytype/ # Jupyter .ipynb_checkpoints/ # IDE / editor .idea/ .vscode/ *.swp *.swo *~ # OS .DS_Store Thumbs.db Desktop.ini # Logs and local data *.log logs/ # ML / large artifacts (keep out of git; mount or CI artifacts) *.pt *.pth *.onnx *.ckpt models/*.pt models/*.pth # Hugging Face / caches (local dev) .cache/ **/.cache/ # Docker (optional local compose overrides) docker-compose.override.yml