.gitignore 438 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. # Python
  2. __pycache__/
  3. *.py[cod]
  4. *.pyo
  5. *.pyd
  6. *.so
  7. .Python
  8. *.egg-info/
  9. .pytest_cache/
  10. .mypy_cache/
  11. .ruff_cache/
  12. # Virtual environments
  13. .venv/
  14. venv/
  15. env/
  16. # Environment files
  17. .env
  18. .env.local
  19. .env.*.local
  20. # IDE / Editor
  21. .idea/
  22. .vscode/
  23. # OS
  24. .DS_Store
  25. # Frontend / Node
  26. node_modules/
  27. frontend/node_modules/
  28. frontend/dist/
  29. npm-debug.log*
  30. yarn-debug.log*
  31. yarn-error.log*
  32. pnpm-debug.log*
  33. # Logs
  34. *.log
  35. # Build / cache
  36. dist/
  37. build/
  38. coverage/