.gitignore 324 B

123456789101112131415161718192021222324252627
  1. .venv/
  2. __pycache__/
  3. *.py[cod]
  4. *.pyo
  5. *.pyd
  6. .pytest_cache/
  7. .mypy_cache/
  8. .ruff_cache/
  9. .coverage
  10. .coverage.*
  11. htmlcov/
  12. .pytest_cache/
  13. .mypy_cache/
  14. .ruff_cache/
  15. *.egg-info/
  16. dist/
  17. build/
  18. # Keep .env.example tracked; ignore only real environment files.
  19. .env
  20. .env.local
  21. .env.*
  22. !.env.example
  23. .idea/
  24. .vscode/
  25. .DS_Store
  26. Thumbs.db
  27. logs/