| 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 --proxies http://brd-customer-hl_eceedea4-zone-datacenter_proxy1:e27i2z1j0uje@brd.superproxy.io:22225" | |
| # Start the server | |
| exec ./server ${ARG} | |