# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
venv/
env/
ENV/
.venv/

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

# Git
.git/
.gitignore

# Docker
Dockerfile
docker-compose.yml
.dockerignore

# Logs (运行时生成)
logs/
*.log

# Local storage (运行时生成)
storage/*.sqlite3
storage/binlog_position.json

# Project files with sensitive data
project_files/**/dev.json

# Temporary files
*.tmp
*.temp
.cache/

# Test files
tests/
test_*.py
*_test.py
.pytest_cache/
.coverage
htmlcov/

# Distribution
dist/
build/
*.egg-info/

# OS
.DS_Store
Thumbs.db

# Other
.arts/
*.md
!README.md
