File size: 423 Bytes
1a3a976 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | #!/bin/bash
# ComfyUI Launcher Script
# Starts ComfyUI server with network access enabled
source /workspace/venv/bin/activate
cd /workspace/ComfyUI
echo "Starting ComfyUI..."
echo "Access the web UI at: http://localhost:8188"
echo "Or from external: http://<your-runpod-ip>:8188"
echo ""
echo "Press Ctrl+C to stop the server"
echo ""
python main.py \
--listen 0.0.0.0 \
--port 8188 \
--preview-method auto
|