#!/bin/bash # Configuration from Secrets USER_NAME=${USER_NAME:-"admin"} WEB_PASSWORD=${WEB_PASSWORD:-"huggingface"} echo "--- Advanced Developer Personal Linux VM ---" echo "Starting VS Code (code-server) on port 7860..." export PASSWORD=$WEB_PASSWORD code-server \ --bind-addr 0.0.0.0:7860 \ --auth password \ --disable-telemetry \ --app-name "Linux-X-Pro" \ . & # Keep the script running wait -n