#!/bin/sh CONFIG_URL="$fetch" echo "Downloading config.yaml from $CONFIG_URL..." curl -o /app/config.yaml $CONFIG_URL if [ $? -ne 0 ]; then echo "Failed to download config.yaml" exit 1 fi echo "config.yaml downloaded successfully" # Set any required environment variables (optional) export ARG="--port 7860" # Start the server exec ./server ${ARG}