# Git 相关
.git
.gitignore

# Node.js 相关
node_modules
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*

# Python 相关
venv
.venv
venv_x86
__pycache__
*.pyc
*.pyo
*.pyd
.Python
.pytest_cache
.mypy_cache
.ruff_cache

# 构建产物
dist
dist-ssr
build
.cache
*.log

# PyInstaller 产物
*.exe
autoclip-backend*
backend/dist/
backend/build/
backend/*.spec

# 开发工具
.vscode
.idea
*.swp
*.swo
*~

# 系统文件
.DS_Store
Thumbs.db

# 数据文件
data/
logs/
temp/
uploads/
whisper_models/
backups/

# Tauri 构建缓存
src-tauri/target

# 后端数据
backend/data/
backend/__pycache__/
backend/.mypy_cache/
backend/.ruff_cache/
backend/tests/
backend/.pytest_cache/

# 前端开发文件
frontend/node_modules/
frontend/dist/
frontend/.vite/

# 文档和脚本
docs/
scripts/
cleanup_backup/
control/

# Docker 相关
docker-compose*.yml
Dockerfile*
docker-*

# 其他
*.pid
*.rdb
*.spec
