.gitignore 482 B

123456789101112131415161718192021222324252627
  1. # Python
  2. backend/.venv/
  3. backend/**/__pycache__/
  4. backend/.pytest_cache/
  5. backend/.coverage
  6. # Node / Next.js
  7. frontend/node_modules/
  8. frontend/.next/
  9. frontend/coverage/
  10. frontend/playwright-report/
  11. frontend/test-results/
  12. frontend/*.tsbuildinfo
  13. # Local environment
  14. .env
  15. .env.local
  16. backend/.env
  17. frontend/.env.local
  18. # Generated artifacts must stay under visualization, but are not committed.
  19. .cache/*
  20. !.cache/.gitkeep
  21. exports/*
  22. !exports/.gitkeep
  23. test-artifacts/*
  24. !test-artifacts/.gitkeep