ComfyUI/.dockerignore
Bahadir Ciloglu e054031606 Fix Python linting issues and enhance RunPod network storage
- 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
2025-11-01 16:24:00 +03:00

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