This commit is contained in:
karpathy
2025-11-22 14:27:53 -08:00
commit eb0eb26f4c
39 changed files with 6660 additions and 0 deletions

31
start.sh Executable file
View File

@@ -0,0 +1,31 @@
#!/bin/bash
# LLM Council - Start script
echo "Starting LLM Council..."
echo ""
# Start backend
echo "Starting backend on http://localhost:8001..."
uv run python -m backend.main &
BACKEND_PID=$!
# Wait a bit for backend to start
sleep 2
# Start frontend
echo "Starting frontend on http://localhost:5173..."
cd frontend
npm run dev &
FRONTEND_PID=$!
echo ""
echo "✓ LLM Council is running!"
echo " Backend: http://localhost:8001"
echo " Frontend: http://localhost:5173"
echo ""
echo "Press Ctrl+C to stop both servers"
# Wait for Ctrl+C
trap "kill $BACKEND_PID $FRONTEND_PID 2>/dev/null; exit" SIGINT SIGTERM
wait