Last active
January 8, 2026 20:02
-
-
Save semhoun/a2e6e9e2c5fdf4dd31c8dbcf3b8831b5 to your computer and use it in GitHub Desktop.
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 | |
| source /venv/main/bin/activate | |
| COMFYUI_DIR=${WORKSPACE}/ComfyUI | |
| # Packages are installed after nodes so we can fix them... | |
| APT_PACKAGES=( | |
| #"package-1" | |
| #"package-2" | |
| ) | |
| PIP_PACKAGES=( | |
| "civitai-model-downloader" | |
| ) | |
| NODES=( | |
| "https://github.com/ltdrdata/ComfyUI-Manager" | |
| "https://github.com/ltdrdata/ComfyUI-Impact-Pack" | |
| "https://github.com/pythongosssss/ComfyUI-Custom-Scripts" | |
| "https://github.com/rgthree/rgthree-comfy" | |
| "https://github.com/yolain/ComfyUI-Easy-Use" | |
| "https://github.com/kijai/ComfyUI-KJNodes" | |
| "https://github.com/crystian/ComfyUI-Crystools" | |
| "https://github.com/jags111/efficiency-nodes-comfyui" | |
| "https://github.com/ssitu/ComfyUI_UltimateSDUpscale" | |
| "https://github.com/justUmen/Bjornulf_custom_nodes" | |
| "https://github.com/zhangp365/ComfyUI-utils-nodes" | |
| "https://github.com/chibiace/ComfyUI-Chibi-Nodes" | |
| "https://github.com/edelvarden/comfyui_image_metadata_extension" | |
| "https://github.com/GavChap/ComfyUI-SD3LatentSelectRes" | |
| "https://github.com/jonstreeter/comfyui-Lora-Tag-Power-Loader" | |
| ) | |
| WORKFLOWS=( | |
| "https://raw.githubusercontent.com/semhoun/omnius/refs/heads/main/comfyui_workflows/Claire.json" | |
| "https://raw.githubusercontent.com/semhoun/omnius/refs/heads/main/comfyui_workflows/FluxSDXL.json" | |
| "https://raw.githubusercontent.com/semhoun/omnius/refs/heads/main/comfyui_workflows/FluxUnet.json" | |
| "https://raw.githubusercontent.com/semhoun/omnius/refs/heads/main/comfyui_workflows/OmniusCheckpoint.json" | |
| "https://raw.githubusercontent.com/semhoun/omnius/refs/heads/main/comfyui_workflows/OmniusUNET.json" | |
| ) | |
| CLIP_MODELS=( | |
| "https://huggingface.co/comfyanonymous/flux_text_encoders/resolve/main/clip_l.safetensors" | |
| "https://huggingface.co/comfyanonymous/flux_text_encoders/resolve/main/t5xxl_fp16.safetensors" | |
| ) | |
| UNET_MODELS=( | |
| "civitai;2211133" | |
| ) | |
| VAE_MODELS=( | |
| ) | |
| CHECKPOINT_MODELS=( | |
| "https://huggingface.co/AIxFuneStudio/Glitter_Rosetta_Illustrious/resolve/main/Glitter_Rosetta_Illustrious_1.0.safetensors" | |
| "civitai;2496089" | |
| ) | |
| LORA_MODELS=( | |
| "https://huggingface.co/nsemhoun/flux_lora/resolve/main/Samuelle.safetensors" | |
| "https://huggingface.co/nsemhoun/flux_lora/resolve/main/SamuelleYoung.safetensors" | |
| "https://huggingface.co/nsemhoun/flux_lora/resolve/main/ComicLike.safetensors" | |
| ) | |
| ### DO NOT EDIT BELOW HERE UNLESS YOU KNOW WHAT YOU ARE DOING ### | |
| function provisioning_start() { | |
| provisioning_print_header | |
| provisioning_get_apt_packages | |
| provisioning_get_pip_packages | |
| provisioning_upgrade_comfyui | |
| provisioning_get_nodes | |
| workflows_dir="${COMFYUI_DIR}/user/default/workflows" | |
| mkdir -p "${workflows_dir}" | |
| provisioning_get_files \ | |
| "${workflows_dir}" \ | |
| "${WORKFLOWS[@]}" | |
| # Get licensed models if HF_TOKEN set & valid | |
| if provisioning_has_valid_hf_token; then | |
| UNET_MODELS+=("https://huggingface.co/black-forest-labs/FLUX.1-dev/resolve/main/flux1-dev.safetensors") | |
| VAE_MODELS+=("https://huggingface.co/black-forest-labs/FLUX.1-dev/resolve/main/ae.safetensors") | |
| else | |
| UNET_MODELS+=("https://huggingface.co/black-forest-labs/FLUX.1-schnell/resolve/main/flux1-schnell.safetensors") | |
| VAE_MODELS+=("https://huggingface.co/black-forest-labs/FLUX.1-schnell/resolve/main/ae.safetensors") | |
| fi | |
| provisioning_get_files \ | |
| "${COMFYUI_DIR}/models/unet" \ | |
| "${UNET_MODELS[@]}" | |
| provisioning_get_files \ | |
| "${COMFYUI_DIR}/models/vae" \ | |
| "${VAE_MODELS[@]}" | |
| provisioning_get_files \ | |
| "${COMFYUI_DIR}/models/clip" \ | |
| "${CLIP_MODELS[@]}" | |
| provisioning_get_files \ | |
| "${COMFYUI_DIR}/models/checkpoints" \ | |
| "${CHECKPOINT_MODELS[@]}" | |
| provisioning_get_files \ | |
| "${COMFYUI_DIR}/models/loras" \ | |
| "${LORA_MODELS[@]}" | |
| 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 --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 --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 --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_upgrade_comfyui() { | |
| cd ${COMFYUI_DIR} | |
| git pull origin v0.8.0 | |
| git checkout v0.8.0 | |
| pip install --no-cache-dir -r requirements.txt | |
| } | |
| 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") | |
| # Check if the token is valid | |
| 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") | |
| # Check if the token is valid | |
| if [ "$response" -eq 200 ]; then | |
| return 0 | |
| else | |
| return 1 | |
| fi | |
| } | |
| # Download from $1 URL to $2 file path | |
| 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 =~ ^civitai ]]; then | |
| export CIVITAI_API_TOKEN=${CIVITAI_TOKEN} | |
| civitai-downloader-cli download $(echo $1 | cut -d ';' -f 2) --local-dir "$2" | |
| return | |
| elif [[ -n $GITHUB_TOKEN && $1 =~ ^https://([a-zA-Z0-9_-]+\.)?github\.com(/|$|\?) ]]; then | |
| auth_token="$GITHUB_TOKEN" | |
| elif [[ -n $GITHUB_TOKEN && $1 =~ ^https://([a-zA-Z0-9_-]+\.)?githubusercontent\.com(/|$|\?) ]]; then | |
| auth_token="$GITHUB_TOKEN" | |
| fi | |
| if [[ -n $auth_token ]]; then | |
| wget --header="Authorization: Bearer $auth_token" -qnc --content-disposition --show-progress -e dotbytes=4M -P "$2" "$1" | |
| else | |
| wget -nc --content-disposition --show-progress -e dotbytes=4M -P "$2" "$1" | |
| fi | |
| } | |
| # Allow user to disable provisioning if they started with a script they didn't want | |
| if [[ ! -f /.noprovisioning ]]; then | |
| provisioning_start | |
| fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment