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 | |
| # Script to populate RunPod Network Volume with required models | |
| # Run this script inside a temporary RunPod pod with the Network Volume mounted at /runpod-volume | |
| BASE_DIR="/runpod-volume/models" | |
| echo "Creating directory structure..." | |
| mkdir -p "$BASE_DIR/checkpoints" | |
| mkdir -p "$BASE_DIR/unet" | |
| mkdir -p "$BASE_DIR/diffusion_models" |
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 | |
| # VAST.ai ComfyUI Provisioning Script | |
| # Use this script with VAST.ai's ComfyUI Serverless template | |
| # Set the PROVISIONING_SCRIPT environment variable to the raw URL of this script | |
| # VAST.ai uses /opt/ComfyUI as the base path | |
| BASE_DIR="/opt/ComfyUI/models" | |
| echo "=== YOR ComfyUI Model Provisioning ===" | |
| echo "Creating directory structure..." |