# ===== 敏感文件（絕對不要提交）=====
# Google OAuth 憑證
credentials.json
token.json

# 環境變數
.env
.env.local
.env.*.local

# ===== Python =====
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
venv/
env/
.venv/
*.egg-info/
dist/
build/

# ===== 測試 =====
.pytest_cache/
.coverage
htmlcov/

# ===== IDE =====
.vscode/
.idea/
*.swp
*.swo
*~

# ===== OS =====
.DS_Store
Thumbs.db

# ===== 快取 =====
.mypy_cache/
.ruff_cache/

# ===== 日誌 =====
*.log
