#!/bin/bash set -e echo "Starting Hermes backend..." cd "$(dirname "$0")/../backend" uvicorn app.main:socket_app --host 0.0.0.0 --port 8000 --reload