From 03a822d5293efd9dea66a6a33a5269902f73453d Mon Sep 17 00:00:00 2001 From: BennyKok Date: Fri, 12 Jan 2024 18:56:18 +0800 Subject: [PATCH] fix: move comfy deploy into standalone install --- builder/modal-builder/src/template/app.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/builder/modal-builder/src/template/app.py b/builder/modal-builder/src/template/app.py index 79b3036..e804bfe 100644 --- a/builder/modal-builder/src/template/app.py +++ b/builder/modal-builder/src/template/app.py @@ -50,7 +50,8 @@ if not deploy_test: "cd /comfyui/custom_nodes && git clone --depth 1 https://github.com/ltdrdata/ComfyUI-Manager.git", "cd /comfyui/custom_nodes/ComfyUI-Manager && pip install -r requirements.txt", "cd /comfyui/custom_nodes/ComfyUI-Manager && mkdir startup-scripts", - + ) + .run_commands( # Install comfy deploy "cd /comfyui/custom_nodes && git clone https://github.com/BennyKok/comfyui-deploy.git", )