#!/usr/bin/env bash # start.sh — just runs docker compose. Everything is containerised now. set -e echo "==> Starting all services (LiveKit + Ollama + Kokoro TTS + UI + Agent)..." echo " First run will pull/build images and download models — may take a few minutes." echo "" docker compose up --build "$@" echo "" echo "Open http://localhost:7731 in your browser."