# Git
.git
.gitignore

# Rust build artifacts
target/

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

# OS files
.DS_Store
Thumbs.db

# Documentation
README.md
*.md

# Docker files (to avoid recursive copying)
Dockerfile
docker-compose.yml
.dockerignore

# Web files (not needed for CLI)
web/

# Temporary files
*.tmp
*.log

# Backup files
*.bak
*.backup