# --- 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

