.gitignore 771 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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. # --- Docker ---
  43. docker-compose.override.yaml
  44. # --- OS Generated Files ---
  45. Desktop.ini