.gitignore 443 B

12345678910111213141516171819202122232425262728293031323334353637
  1. # Dependencies
  2. **/node_modules/
  3. # Build output and caches
  4. **/dist/
  5. **/.angular/
  6. **/coverage/
  7. **/.cache/
  8. **/.tmp/
  9. **/tmp/
  10. # Local runtime and test artifacts
  11. .playwright-cli/
  12. output/
  13. *.log
  14. *.pid
  15. server/upstream-cost.json
  16. client/proxy.local.json
  17. # Local environment files and credentials
  18. .env
  19. .env.*
  20. !.env.example
  21. !.env.*.example
  22. *.pem
  23. *.key
  24. *.p12
  25. *.pfx
  26. # Editor and operating-system files
  27. .idea/
  28. .DS_Store
  29. Thumbs.db
  30. Desktop.ini
  31. *.swp
  32. *.swo