ComfyUI / start_comfy
aleph65's picture
Add start_comfy launcher script
cef4e12 verified
Raw
History Blame
259 Bytes
#!/bin/bash
# Free the ComfyUI port if something's already on it, then start ComfyUI
# in the foreground on 7865 with the manager enabled.
kill $(lsof -t -i :7865) 2>/dev/null
cd /workspace/ComfyUI
python main.py --listen 0.0.0.0 --port 7865 --enable-manager