.gitignore 547 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. # Python
  2. __pycache__/
  3. *.py[cod]
  4. *.pyo
  5. *.pyd
  6. .Python
  7. *.egg-info/
  8. dist/
  9. build/
  10. .eggs/
  11. # Virtual environments
  12. .venv/
  13. venv/
  14. env/
  15. ENV/
  16. # Environment variables (keep .env files, ignore local overrides)
  17. .env.local
  18. .env.*.local
  19. frontend/.env.local
  20. frontend/.env.*.local
  21. # pytest / hypothesis
  22. .pytest_cache/
  23. .hypothesis/
  24. # Node
  25. frontend/node_modules/
  26. frontend/dist/
  27. frontend/dist-ssr/
  28. frontend/*.local
  29. # Logs
  30. *.log
  31. logs/
  32. # OS
  33. .DS_Store
  34. Thumbs.db
  35. # Editor
  36. .vscode/*
  37. !.vscode/extensions.json
  38. .idea/
  39. .kiro/
  40. # Misc
  41. *.suo
  42. *.ntvs*
  43. *.njsproj
  44. *.sln
  45. *.sw?