Add start_comfy launcher script
Browse files- start_comfy +6 -0
start_comfy
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#!/bin/bash
|
| 2 |
+
# Free the ComfyUI port if something's already on it, then start ComfyUI
|
| 3 |
+
# in the foreground on 7865 with the manager enabled.
|
| 4 |
+
kill $(lsof -t -i :7865) 2>/dev/null
|
| 5 |
+
cd /workspace/ComfyUI
|
| 6 |
+
python main.py --listen 0.0.0.0 --port 7865 --enable-manager
|