.gitignore 251 B

1234567891011121314151617181920212223242526272829
  1. # Node
  2. node_modules/
  3. dist/
  4. *.tsbuildinfo
  5. .vite/
  6. # Python
  7. __pycache__/
  8. *.py[cod]
  9. .venv/
  10. venv/
  11. .pytest_cache/
  12. .mypy_cache/
  13. .ruff_cache/
  14. *.egg-info/
  15. # Env / local
  16. .env
  17. .env.local
  18. *.local
  19. # OS / editor
  20. .DS_Store
  21. Thumbs.db
  22. .idea/
  23. .vscode/
  24. # Logs
  25. *.log