.gitignore 258 B

12345678910111213141516171819202122232425262728293031323334353637
  1. # Storage
  2. storage/
  3. # IDE
  4. .idea/
  5. .vscode/
  6. *.iml
  7. # Claude
  8. .claude/
  9. # Python
  10. __pycache__/
  11. *.py[cod]
  12. *.pyo
  13. .Python
  14. *.egg-info/
  15. dist/
  16. build/
  17. .eggs/
  18. *.egg
  19. .venv/
  20. venv/
  21. env/
  22. # Logs
  23. *.log
  24. logs/
  25. # OS
  26. .DS_Store
  27. Thumbs.db
  28. # Test
  29. .pytest_cache/
  30. .coverage
  31. htmlcov/