| 123456789101112131415161718192021222324252627282930313233343536 |
- # Python
- __pycache__/
- *.pyc
- *.pyo
- *.pyd
- *.so
- .venv/
- venv/
- .env
- .env.*
- # FastMCP / app runtime
- logs/
- data/
- run/
- .tmp/
- # OS / editor
- .DS_Store
- Thumbs.db
- .vscode/
- .idea/
- # Build / coverage
- build/
- dist/
- htmlcov/
- .coverage
- .pytest_cache/
- .mypy_cache/
- .ruff_cache/
- # Secrets
- *.key
- *.pem
- *.crt
|