.gitignore 291 B

123456789101112131415161718192021222324252627282930313233343536
  1. # Python
  2. __pycache__/
  3. *.pyc
  4. *.pyo
  5. *.pyd
  6. *.so
  7. .venv/
  8. venv/
  9. .env
  10. .env.*
  11. # FastMCP / app runtime
  12. logs/
  13. data/
  14. run/
  15. .tmp/
  16. # OS / editor
  17. .DS_Store
  18. Thumbs.db
  19. .vscode/
  20. .idea/
  21. # Build / coverage
  22. build/
  23. dist/
  24. htmlcov/
  25. .coverage
  26. .pytest_cache/
  27. .mypy_cache/
  28. .ruff_cache/
  29. # Secrets
  30. *.key
  31. *.pem
  32. *.crt