mirror of
https://github.com/comfyanonymous/ComfyUI.git
synced 2026-02-11 05:52:33 +08:00
- Fix all whitespace and formatting issues in runpod_handler.py - Remove trailing whitespace and blank line whitespace - Add comprehensive RunPod network storage setup - Enhance start_runpod.py with automatic model mounting - Update Dockerfile for optimized RunPod deployment - Add detailed setup documentation in runpod_setup.md - Improve .dockerignore for faster builds - Add .env to .gitignore for security
79 lines
680 B
Plaintext
79 lines
680 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/
|
|
|
|
# Cache
|
|
.cache/
|
|
cache/
|
|
|
|
# Node modules (if any)
|
|
node_modules/
|
|
|
|
# Docker
|
|
Dockerfile.*
|
|
docker-compose*.yml |