Skip to content

Instantly share code, notes, and snippets.

View salsa2k's full-sized avatar

Rafael Noronha salsa2k

  • Waterloo / Canada
View GitHub Profile
#!/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"
#!/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..."