# Git
.git
.gitignore
.gitattributes

# Documentation
*.md
docs/

# Python
__pycache__
*.pyc
*.pyo
*.pyd
.Python
env/
pip-log.txt
pip-delete-this-directory.txt
.tox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
*.log
.git
.mypy_cache
.pytest_cache
.hypothesis

# Virtual environments
.venv
env/
venv/
ENV/
env.bak/
venv.bak/

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

# OS
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db

# ComfyUI
models/*
!models/.gitkeep
output/*
!output/.gitkeep
input/*
!input/.gitkeep
temp/*
!temp/.gitkeep

# Large files
*.h5
*.pkl
*.pth
*.ckpt
*.safetensors
*.bin
*.pt

# Logs
*.log
logs/

# Test files
test/
tests/
*.test.py

# Build artifacts
build/
dist/
*.egg-info/

# Cache
.cache/
cache/

# Node modules (if any)
node_modules/

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

# Docker
.dockerignore
docker-compose.override.yml
