From 54daed19bf0769bbc7c5c72dfcab6c2da5ce0307 Mon Sep 17 00:00:00 2001 From: BennyKok Date: Fri, 12 Jan 2024 19:42:14 +0800 Subject: [PATCH] fix: instead of install comfy deploy in modal, install in restore snapshot state --- builder/modal-builder/src/template/app.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/builder/modal-builder/src/template/app.py b/builder/modal-builder/src/template/app.py index e804bfe..df21d7d 100644 --- a/builder/modal-builder/src/template/app.py +++ b/builder/modal-builder/src/template/app.py @@ -51,10 +51,10 @@ if not deploy_test: "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", - ) + # .run_commands( + # # Install comfy deploy + # "cd /comfyui/custom_nodes && git clone https://github.com/BennyKok/comfyui-deploy.git", + # ) .copy_local_file(f"{current_directory}/data/extra_model_paths.yaml", "/comfyui") .copy_local_file(f"{current_directory}/data/start.sh", "/start.sh")