| #!/bin/bash |
|
|
| source /venv/main/bin/activate |
| COMFYUI_DIR=${WORKSPACE}/ComfyUI |
|
|
| |
|
|
| APT_PACKAGES=( |
| |
| |
| ) |
|
|
| PIP_PACKAGES=( |
|
|
| ) |
|
|
| NODES=( |
| "https://github.com/ltdrdata/ComfyUI-Manager" |
| "https://github.com/cubiq/ComfyUI_essentials" |
| "https://github.com/ltdrdata/ComfyUI-Impact-Pack" |
| "https://github.com/MoonGoblinDev/Civicomfy" |
| "https://github.com/huchukato/comfy-tagcomplete" |
| "https://github.com/Koishi-Star/Euler-Smea-Dyn-Sampler" |
| "https://github.com/huchukato/ComfyUI-QwenVL-Mod" |
| ) |
|
|
| WORKFLOWS=( |
| "https://huggingface.co/huchukato/favs/resolve/main/workflows/SDXL-LoRaStack-Upscale.json" |
| "https://huggingface.co/huchukato/favs/resolve/main/workflows/WAN2.2-I2V-AutoPrompt-SingleVideo-GGUF.json" |
| "https://huggingface.co/huchukato/favs/resolve/main/workflows/WAN2.2-I2V-AutoPrompt-SingleVideo.json" |
| "https://huggingface.co/huchukato/favs/resolve/main/workflows/WAN2.2-I2V-LongVideo-AutoPrompt-MMAudio-GGUF.json" |
| "https://huggingface.co/huchukato/favs/resolve/main/workflows/WAN2.2-I2V-LongVideo-AutoPrompt-MMAudio-v1-3.json" |
| ) |
|
|
|
|
| CHECKPOINT_MODELS=( |
| ) |
|
|
| UNET_MODELS=( |
| |
| ) |
|
|
| LORA_MODELS=( |
| |
| ) |
|
|
| VAE_MODELS=( |
| "https://huggingface.co/Comfy-Org/Wan_2.2_ComfyUI_Repackaged/resolve/main/split_files/vae/wan_2.1_vae.safetensors" |
| "https://huggingface.co/Kijai/WanVideo_comfy/resolve/main/Wan2_1_VAE_fp32.safetensors" |
| "https://huggingface.co/huchukato/favs/resolve/main/VAE/sdxl.vae.safetensors" |
| ) |
|
|
| ESRGAN_MODELS=( |
| "https://huggingface.co/huchukato/favs/resolve/main/ESRGAN/2xLexicaRRDBNet.pth" |
| "https://huggingface.co/huchukato/favs/resolve/main/ESRGAN/2xLexicaRRDBNet_Sharp.pth" |
| ) |
|
|
| TEXT_ENCODERS=( |
| "https://huggingface.co/NSFW-API/NSFW-Wan-UMT5-XXL/resolve/main/nsfw_wan_umt5-xxl_fp8_scaled.safetensors" |
| ) |
|
|
| CONTROLNET_MODELS=( |
| ) |
|
|
| |
|
|
| function provisioning_start() { |
| provisioning_print_header |
| provisioning_get_apt_packages |
| provisioning_get_nodes |
| provisioning_get_pip_packages |
| provisioning_get_files \ |
| "${COMFYUI_DIR}/user/default/workflows" \ |
| "${WORKFLOWS[@]}" |
| provisioning_get_files \ |
| "${COMFYUI_DIR}/models/checkpoints" \ |
| "${CHECKPOINT_MODELS[@]}" |
| provisioning_get_files \ |
| "${COMFYUI_DIR}/models/unet" \ |
| "${UNET_MODELS[@]}" |
| provisioning_get_files \ |
| "${COMFYUI_DIR}/models/lora" \ |
| "${LORA_MODELS[@]}" |
| provisioning_get_files \ |
| "${COMFYUI_DIR}/models/controlnet" \ |
| "${CONTROLNET_MODELS[@]}" |
| provisioning_get_files \ |
| "${COMFYUI_DIR}/models/vae" \ |
| "${VAE_MODELS[@]}" |
| provisioning_get_files \ |
| "${COMFYUI_DIR}/models/upscale_models" \ |
| "${ESRGAN_MODELS[@]}" |
| provisioning_get_files \ |
| "${COMFYUI_DIR}/models/text_encoders" \ |
| "${TEXT_ENCODERS[@]}" |
| provisioning_print_end |
| } |
|
|
| function provisioning_get_apt_packages() { |
| if [[ -n $APT_PACKAGES ]]; then |
| sudo $APT_INSTALL ${APT_PACKAGES[@]} |
| fi |
| } |
|
|
| function provisioning_get_pip_packages() { |
| if [[ -n $PIP_PACKAGES ]]; then |
| pip install --root-user-action=ignore --no-cache-dir ${PIP_PACKAGES[@]} |
| fi |
| } |
|
|
| function provisioning_get_nodes() { |
| for repo in "${NODES[@]}"; do |
| dir="${repo##*/}" |
| path="${COMFYUI_DIR}/custom_nodes/${dir}" |
| requirements="${path}/requirements.txt" |
| if [[ -d $path ]]; then |
| if [[ ${AUTO_UPDATE,,} != "false" ]]; then |
| printf "Updating node: %s...\n" "${repo}" |
| ( cd "$path" && git pull ) |
| if [[ -e $requirements ]]; then |
| pip install --root-user-action=ignore --no-cache-dir -r "$requirements" |
| fi |
| fi |
| else |
| printf "Downloading node: %s...\n" "${repo}" |
| git clone "${repo}" "${path}" --recursive |
| if [[ -e $requirements ]]; then |
| pip install --root-user-action=ignore --no-cache-dir -r "${requirements}" |
| fi |
| fi |
| done |
| } |
|
|
| function provisioning_get_files() { |
| if [[ -z $2 ]]; then return 1; fi |
| |
| dir="$1" |
| mkdir -p "$dir" |
| shift |
| arr=("$@") |
| printf "Downloading %s model(s) to %s...\n" "${#arr[@]}" "$dir" |
| for url in "${arr[@]}"; do |
| printf "Downloading: %s\n" "${url}" |
| provisioning_download "${url}" "${dir}" |
| printf "\n" |
| done |
| } |
|
|
| function provisioning_print_header() { |
| printf "\n##############################################\n# #\n# Provisioning container #\n# #\n# This will take some time #\n# #\n# Your container will be ready on completion #\n# #\n##############################################\n\n" |
| } |
|
|
| function provisioning_print_end() { |
| printf "\nProvisioning complete: Application will start now\n\n" |
| } |
|
|
| function provisioning_has_valid_hf_token() { |
| [[ -n "$HF_TOKEN" ]] || return 1 |
| url="https://huggingface.co/api/whoami-v2" |
|
|
| response=$(curl -o /dev/null -s -w "%{http_code}" -X GET "$url" \ |
| -H "Authorization: Bearer $HF_TOKEN" \ |
| -H "Content-Type: application/json") |
|
|
| |
| if [ "$response" -eq 200 ]; then |
| return 0 |
| else |
| return 1 |
| fi |
| } |
|
|
| function provisioning_has_valid_civitai_token() { |
| [[ -n "$CIVITAI_TOKEN" ]] || return 1 |
| url="https://civitai.com/api/v1/models?hidden=1&limit=1" |
|
|
| response=$(curl -o /dev/null -s -w "%{http_code}" -X GET "$url" \ |
| -H "Authorization: Bearer $CIVITAI_TOKEN" \ |
| -H "Content-Type: application/json") |
|
|
| |
| if [ "$response" -eq 200 ]; then |
| return 0 |
| else |
| return 1 |
| fi |
| } |
|
|
| |
| function provisioning_download() { |
| if [[ -n $HF_TOKEN && $1 =~ ^https://([a-zA-Z0-9_-]+\.)?huggingface\.co(/|$|\?) ]]; then |
| auth_token="$HF_TOKEN" |
| elif |
| [[ -n $CIVITAI_TOKEN && $1 =~ ^https://([a-zA-Z0-9_-]+\.)?civitai\.com(/|$|\?) ]]; then |
| auth_token="$CIVITAI_TOKEN" |
| fi |
| if [[ -n $auth_token ]];then |
| wget --header="Authorization: Bearer $auth_token" -qnc --content-disposition --show-progress -e dotbytes="${3:-4M}" -P "$2" "$1" |
| else |
| wget -qnc --content-disposition --show-progress -e dotbytes="${3:-4M}" -P "$2" "$1" |
| fi |
| } |
|
|
| |
| if [[ ! -f /.noprovisioning ]]; then |
| provisioning_start |
| fi |