# Python
*.pyc
__pycache__/
.pytest_cache/
.venv/
venv/
*.egg-info/

# Git
.git/
.gitignore

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

# Logs
*.log
.trace/
.cache/

# Outputs
outputs/*
!outputs/.gitkeep

# Environment
.env
.env.local
.env.*.local

# Documentation (除了README)
# 注意：Dockerfile 会复制 *.md 文件，所以这里不排除
# *.md
# !README.md

# Node
node_modules/

# macOS
.DS_Store

# Project specific (从根目录视角)
examples/*/outputs/*
examples/*/.venv/
examples/*/__pycache__/
examples/*/.pytest_cache/
examples/*/.env
examples/*/.env.*
examples/*/.trace/
examples/*/.cache/
