voice-agent/start.sh
2026-08-31 11:47:29 -04:00

12 lines
375 B
Bash
Executable file

#!/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."