#!/bin/bash # The comment above is shebang, DO NOT REMOVE SCRIPT_ABSPATH="$(readlink -f "${BASH_SOURCE[0]}")" if [[ "$OSTYPE" == "darwin"* ]]; then sed -i '' 's/\r//g' "$SCRIPT_ABSPATH" else sed -i 's/\r//g' "$SCRIPT_ABSPATH" fi chmod +x "$SCRIPT_ABSPATH" PROJECT_ROOT="$(dirname "$SCRIPT_ABSPATH")" BLUE='\033[0;34m' GREEN='\033[0;32m' RED='\033[0;31m' YELLOW='\033[0;33m' BOLD='\033[1m' RESET='\033[0m' BACKEND_PID="" FRONTEND_PID="" ELECTRON_PID="" SHUTTING_DOWN=false kill_tree() { local pid=$1 sig=${2:-TERM} local children children=$(pgrep -P "$pid" 2>/dev/null) for child in $children; do kill_tree "$child" "$sig" done kill -"$sig" "$pid" 2>/dev/null } cleanup() { $SHUTTING_DOWN && return SHUTTING_DOWN=true echo "" echo -e "${YELLOW}${BOLD}Gracefully shutting down all services...${RESET}" for pid in $ELECTRON_PID $BACKEND_PID $FRONTEND_PID; do [[ -n "$pid" ]] && kill_tree "$pid" TERM done local elapsed=0 while (( elapsed < 5 )); do local alive=false for pid in $ELECTRON_PID $BACKEND_PID $FRONTEND_PID; do [[ -n "$pid" ]] && kill -0 "$pid" 2>/dev/null && alive=true done $alive || break sleep 1 ((elapsed++)) done for pid in $ELECTRON_PID $BACKEND_PID $FRONTEND_PID; do [[ -n "$pid" ]] && kill -0 "$pid" 2>/dev/null && kill_tree "$pid" KILL done wait 2>/dev/null echo -e "${GREEN}${BOLD}All services stopped.${RESET}" } trap 'cleanup; exit 0' INT TERM trap cleanup EXIT # --- Ensure bundled uv/uvx for MCP servers --- UV_BIN_DIR="$PROJECT_ROOT/backend/uv-bin" if [ ! -f "$UV_BIN_DIR/uvx" ]; then echo -e "${YELLOW}${BOLD}[uv]${RESET} Downloading uv/uvx..." mkdir -p "$UV_BIN_DIR" ARCH=$(uname -m) if [[ "$ARCH" == "arm64" ]]; then curl -sL "https://github.com/astral-sh/uv/releases/latest/download/uv-aarch64-apple-darwin.tar.gz" | tar xz -C /tmp cp /tmp/uv-aarch64-apple-darwin/uv "$UV_BIN_DIR/uv" cp /tmp/uv-aarch64-apple-darwin/uvx "$UV_BIN_DIR/uvx" else curl -sL "https://github.com/astral-sh/uv/releases/latest/download/uv-x86_64-apple-darwin.tar.gz" | tar xz -C /tmp cp /tmp/uv-x86_64-apple-darwin/uv "$UV_BIN_DIR/uv" cp /tmp/uv-x86_64-apple-darwin/uvx "$UV_BIN_DIR/uvx" fi chmod +x "$UV_BIN_DIR/uv" "$UV_BIN_DIR/uvx" rm -rf /tmp/uv-*-apple-darwin fi # --- Reap any backend leftover from a prior unclean exit --- # If the user double-Ctrl+C'd a previous run, or a workspace's signal # propagation killed the parent before cleanup() ran SIGKILL, uvicorn # can still be bound to :8324 even though the shell prompt returned. # That makes the next `bash run.sh` fail with Errno 48 "Address already # in use" and leaves the user thinking the dev loop is broken. Free the # port up front instead of asking the user to debug. if lsof -ti :8324 >/dev/null 2>&1; then echo -e "${YELLOW}${BOLD}[preflight]${RESET} Port 8324 still bound from a prior run — killing stale process..." lsof -ti :8324 | xargs kill -9 2>/dev/null || true sleep 0.3 fi # --- EVS / Widevine VMP auth preflight (macOS only) --- # DRM playback needs a CastLabs VMP signature, which needs a CastLabs EVS # account. Only the ACCOUNT auth is interactive, so settle it HERE, before the # backend/frontend background logs start streaming to this terminal (otherwise # the prompt interleaves with [backend] output). Hybrid model: # 1. Shared team account: creds from gitignored .env.evs (zero-touch, CI-friendly). # 2. Per-dev fallback: skippable interactive signup when no shared creds exist. # Once a token is cached locally, neither path prompts again. Fail-soft and fully # skippable; skipping only limits DRM media to previews. OPENSWARM_SKIP_VMP=1 # silences the whole step. The actual signing still runs later via sign-vmp.sh, # non-interactively, because the token (or env creds) are in place by then. if [[ "$OSTYPE" == "darwin"* && "${OPENSWARM_SKIP_VMP:-}" != "1" ]]; then # castlabs-evs reads EVS_ACCOUNT_NAME / EVS_PASSWD from the env for both # reauth and sign-pkg, so sourcing the team file is all the wiring needed. EVS_ENV_FILE="$PROJECT_ROOT/.env.evs" [[ -f "$EVS_ENV_FILE" ]] && { set -a; source "$EVS_ENV_FILE"; set +a; } if ! python3 -c "import castlabs_evs" 2>/dev/null; then echo -e "${YELLOW}${BOLD}[vmp]${RESET} Installing castlabs-evs (one-time)..." pip3 install --user --quiet castlabs-evs 2>/dev/null || true fi # Short connect timeout so an offline dev isn't stalled 60s at boot. EVS_TO=(--connect-timeout 10 --auth-timeout 10) if python3 -c "import castlabs_evs" 2>/dev/null; then if python3 -m castlabs_evs.account -n "${EVS_TO[@]}" refresh /dev/null 2>&1; then # Cached token still valid: nothing to do. echo -e "${YELLOW}${BOLD}[vmp]${RESET} EVS already authenticated - DRM signing enabled." elif [[ -n "${EVS_ACCOUNT_NAME:-}" && -n "${EVS_PASSWD:-}" ]]; then # Path 1: shared account, fully non-interactive. if python3 -m castlabs_evs.account -n "${EVS_TO[@]}" reauth /dev/null 2>&1; then echo -e "${YELLOW}${BOLD}[vmp]${RESET} EVS authenticated (shared account) - DRM signing enabled." else echo -e "${YELLOW}${BOLD}[vmp]${RESET} EVS auth failed - check .env.evs creds. Continuing (DRM = previews)." fi elif [[ -t 0 ]]; then # Path 2: no shared creds, interactive terminal: offer skippable signup. echo "" echo -e "${YELLOW}${BOLD}[vmp]${RESET} First-time DRM signing setup (free CastLabs account, ~1 min)." echo -e "${YELLOW}${BOLD}[vmp]${RESET} Enables full DRM playback. Skip to do it later, or share a .env.evs." read -r -p " Set up now? [Enter = yes, s = skip]: " _evs_ans if [[ "$_evs_ans" == "s" || "$_evs_ans" == "S" ]]; then echo -e "${YELLOW}${BOLD}[vmp]${RESET} Skipped - DRM limited to previews (OPENSWARM_SKIP_VMP=1 to silence)." export OPENSWARM_SKIP_VMP=1 else python3 -m castlabs_evs.account signup \ || echo -e "${YELLOW}${BOLD}[vmp]${RESET} Signup didn't complete - continuing without DRM signing." fi else # No creds and no TTY (piped / CI-like): never block, just skip. echo -e "${YELLOW}${BOLD}[vmp]${RESET} No EVS creds and non-interactive shell - skipping DRM signing (previews only)." fi fi fi # --- Start backend --- # Mark this as a dev launch so backend/run.sh enables --reload. Packaged # builds never run this top-level script (Electron spawns backend # directly), so the env stays unset in production and uvicorn boots in # its leaner non-reload mode. export OPENSWARM_DEV=1 # --- Lint preflight: surface violations before the dev loop starts --- # print_errors.sh -> linter/lint.py needs watchfiles + vulture, which live in # the backend venv (installed by backend/run.sh when OPENSWARM_DEV=1). Prepend # the venv's bin to PATH so the script's bare `python3` resolves there. Skip # silently on a fresh checkout where the venv isn't built yet. VENV_BIN="$PROJECT_ROOT/backend/.venv/bin" if [ -x "$VENV_BIN/python3" ]; then echo -e "${YELLOW}${BOLD}[lint]${RESET} Checking for linter violations..." PATH="$VENV_BIN:$PATH" bash "$PROJECT_ROOT/linter/print_errors.sh" "$PROJECT_ROOT" fi echo -e "${BLUE}${BOLD}[backend]${RESET} Starting backend server..." bash "$PROJECT_ROOT/backend/run.sh" > >( while IFS= read -r line; do printf "${BLUE}${BOLD}[backend]${RESET} %s\n" "$line" done ) 2>&1 & BACKEND_PID=$! # --- Wait for backend to become healthy --- echo -e "${YELLOW}${BOLD}Waiting for backend (http://localhost:8324) to be ready...${RESET}" MAX_WAIT=120 elapsed=0 while (( elapsed < MAX_WAIT )); do if curl -s -o /dev/null --connect-timeout 1 http://localhost:8324/ 2>/dev/null; then echo -e "${GREEN}${BOLD}Backend is ready!${RESET}" break fi if ! kill -0 "$BACKEND_PID" 2>/dev/null; then echo -e "${RED}${BOLD}Backend process exited before becoming ready.${RESET}" exit 1 fi sleep 2 ((elapsed += 2)) done if (( elapsed >= MAX_WAIT )); then echo -e "${RED}${BOLD}Backend did not become ready within ${MAX_WAIT}s. Aborting.${RESET}" exit 1 fi # --- Start frontend --- echo -e "${GREEN}${BOLD}[frontend]${RESET} Starting frontend dev server..." bash "$PROJECT_ROOT/frontend/run.sh" > >( while IFS= read -r line; do printf "${GREEN}${BOLD}[frontend]${RESET} %s\n" "$line" done ) 2>&1 & FRONTEND_PID=$! # --- Wait for frontend dev server to become available --- echo -e "${YELLOW}${BOLD}Waiting for frontend (http://localhost:3000) to be ready...${RESET}" FRONTEND_MAX_WAIT=60 frontend_elapsed=0 while (( frontend_elapsed < FRONTEND_MAX_WAIT )); do if curl -s -o /dev/null --connect-timeout 1 http://localhost:3000/ 2>/dev/null; then echo -e "${GREEN}${BOLD}Frontend is ready!${RESET}" break fi if ! kill -0 "$FRONTEND_PID" 2>/dev/null; then echo -e "${RED}${BOLD}Frontend process exited before becoming ready.${RESET}" exit 1 fi sleep 2 ((frontend_elapsed += 2)) done if (( frontend_elapsed >= FRONTEND_MAX_WAIT )); then echo -e "${RED}${BOLD}Frontend did not become ready within ${FRONTEND_MAX_WAIT}s. Aborting.${RESET}" exit 1 fi # --- Install Electron dependencies if needed --- MAGENTA='\033[0;35m' if [ ! -d "$PROJECT_ROOT/electron/node_modules" ]; then echo -e "${MAGENTA}${BOLD}[electron]${RESET} Installing dependencies..." (cd "$PROJECT_ROOT/electron" && npm install) 2>&1 | while IFS= read -r line; do printf "${MAGENTA}${BOLD}[electron]${RESET} %s\n" "$line" done fi # --- Sign Electron VMP for DRM (if EVS account exists) --- if [ -f "$PROJECT_ROOT/electron/scripts/sign-vmp.sh" ]; then echo -e "${YELLOW}${BOLD}[vmp]${RESET} Checking VMP signature..." bash "$PROJECT_ROOT/electron/scripts/sign-vmp.sh" 2>&1 | while IFS= read -r line; do printf "${YELLOW}${BOLD}%s${RESET}\n" "$line" done fi # --- Start Electron in dev mode --- echo -e "${MAGENTA}${BOLD}[electron]${RESET} Launching Electron dev shell..." (cd "$PROJECT_ROOT/electron" && unset ELECTRON_RUN_AS_NODE && ELECTRON_DEV=1 npx electron .) > >( while IFS= read -r line; do printf "${MAGENTA}${BOLD}[electron]${RESET} %s\n" "$line" done ) 2>&1 & ELECTRON_PID=$! echo "" echo -e "${BOLD}All services are running. Press Ctrl+C to stop.${RESET}" echo -e " Backend: ${BLUE}http://localhost:8324${RESET}" echo -e " Frontend: ${GREEN}http://localhost:3000${RESET}" echo -e " Electron: ${MAGENTA}dev shell (pid $ELECTRON_PID)${RESET}" echo "" # --- Monitor: if any service exits, tear down all --- while ! $SHUTTING_DOWN; do if ! kill -0 "$BACKEND_PID" 2>/dev/null; then echo -e "${RED}${BOLD}Backend process exited unexpectedly. Shutting down...${RESET}" exit 1 fi if [[ -n "$FRONTEND_PID" ]] && ! kill -0 "$FRONTEND_PID" 2>/dev/null; then echo -e "${RED}${BOLD}Frontend process exited unexpectedly. Shutting down...${RESET}" exit 1 fi if [[ -n "$ELECTRON_PID" ]] && ! kill -0 "$ELECTRON_PID" 2>/dev/null; then echo -e "${YELLOW}${BOLD}Electron process exited. Shutting down...${RESET}" exit 0 fi sleep 3 done