.gitignore 785 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. # --- IDEs & Editors ---
  2. .idea/
  3. .vscode/
  4. .cursor/
  5. *.swp
  6. *.swo
  7. *.swn
  8. .DS_Store
  9. Thumbs.db
  10. # --- Logs ---
  11. logs/
  12. *.log
  13. npm-debug.log*
  14. yarn-debug.log*
  15. yarn-error.log*
  16. pnpm-debug.log*
  17. # --- Environment Variables ---
  18. .env
  19. .env.local
  20. .env.*.local
  21. # Keep .env.example
  22. !.env.example
  23. # --- Local Data & Backups ---
  24. data/
  25. backups/
  26. tmp/
  27. # --- Backend (Go) ---
  28. backend/bin/
  29. backend/dist/
  30. backend/main
  31. backend/main.exe
  32. backend/coverage.out
  33. backend/vendor/
  34. # 如果不使用 go mod vendor 模式,通常忽略 vendor
  35. # 如果使用了,请注释掉上面那行
  36. # --- Frontend (Node.js/Vue) ---
  37. frontend/node_modules/
  38. frontend/dist/
  39. frontend/.eslintcache
  40. frontend/coverage/
  41. frontend/*.local
  42. node_modules/
  43. # --- Docker ---
  44. docker-compose.override.yaml
  45. # --- OS Generated Files ---
  46. Desktop.ini