| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- # --- IDEs & Editors ---
- .idea/
- .vscode/
- .cursor/
- *.swp
- *.swo
- *.swn
- .DS_Store
- Thumbs.db
- # --- Logs ---
- logs/
- *.log
- npm-debug.log*
- yarn-debug.log*
- yarn-error.log*
- pnpm-debug.log*
- # --- Environment Variables ---
- .env
- .env.local
- .env.*.local
- # Keep .env.example
- !.env.example
- # --- Local Data & Backups ---
- data/
- backups/
- tmp/
- # --- Backend (Go) ---
- backend/bin/
- backend/dist/
- backend/main
- backend/main.exe
- backend/coverage.out
- backend/vendor/
- # 如果不使用 go mod vendor 模式,通常忽略 vendor
- # 如果使用了,请注释掉上面那行
- # --- Frontend (Node.js/Vue) ---
- frontend/node_modules/
- frontend/dist/
- frontend/.eslintcache
- frontend/coverage/
- frontend/*.local
- node_modules/
- # --- Docker ---
- docker-compose.override.yaml
- # --- OS Generated Files ---
- Desktop.ini
|