This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
set -euo pipefail | |
apt-get update | |
apt-get install libmagic-dev -y | |
apt-get install libmagic1 -y | |
export COMFYUI_API_BASE=${COMFYUI_API_BASE:-http://127.0.0.1:8188} | |
export BACKEND=${BACKEND:-comfyui-json} | |
export MODEL_SERVER_URL=${MODEL_SERVER_URL:-http://localhost:8000} |