Initial commit

This commit is contained in:
Ian Keane 2026-08-31 11:47:29 -04:00
commit 9cea1c1bba
13 changed files with 848 additions and 0 deletions

12
start.sh Executable file
View file

@ -0,0 +1,12 @@
#!/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."