mirror of
https://github.com/corundex/ComfyUI-ROCm.git
synced 2026-03-29 20:51:06 +02:00
15 lines
268 B
Bash
15 lines
268 B
Bash
#!/bin/bash
|
|
# ComfyUI Startup Script
|
|
|
|
set -e
|
|
|
|
log() {
|
|
echo "[ComfyUI] $1"
|
|
}
|
|
|
|
# Download models using Python script
|
|
python -u /workspace/download_models.py
|
|
|
|
# Start ComfyUI
|
|
log "Starting ComfyUI on port 8188..."
|
|
exec python main.py --listen 0.0.0.0 --port 8188 "$@" |