mirror of
https://github.com/comfyanonymous/ComfyUI.git
synced 2026-02-12 22:42:36 +08:00
- Update .dockerignore to exclude entire models/ directory - Exclude input/ directory as well - Models will now be loaded from RunPod network storage only - Significantly reduce Docker image size and build time
80 lines
685 B
Plaintext
80 lines
685 B
Plaintext
# Git
|
|
.git
|
|
.gitignore
|
|
.gitattributes
|
|
|
|
# Documentation
|
|
*.md
|
|
docs/
|
|
|
|
# Development files
|
|
.env
|
|
.env.local
|
|
.env.example
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
build/
|
|
develop-eggs/
|
|
dist/
|
|
downloads/
|
|
eggs/
|
|
.eggs/
|
|
lib/
|
|
lib64/
|
|
parts/
|
|
sdist/
|
|
var/
|
|
wheels/
|
|
*.egg-info/
|
|
.installed.cfg
|
|
*.egg
|
|
|
|
# Virtual environments
|
|
venv/
|
|
env/
|
|
ENV/
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Logs
|
|
*.log
|
|
logs/
|
|
|
|
# Temporary files
|
|
temp/
|
|
tmp/
|
|
*.tmp
|
|
|
|
# Large model files (will be mounted from network storage)
|
|
models/
|
|
!models/.gitkeep
|
|
|
|
# Output files
|
|
output/
|
|
outputs/
|
|
input/
|
|
|
|
# Cache
|
|
.cache/
|
|
cache/
|
|
|
|
# Node modules (if any)
|
|
node_modules/
|
|
|
|
# Docker
|
|
Dockerfile.*
|
|
docker-compose*.yml |