first commit

This commit is contained in:
2026-08-15 14:43:56 +08:00
commit 63b8c28e1d
340 changed files with 59515 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
@echo off
title BetterGI Live Streaming Service
cd /d "%~dp0"
set PYTHON=%~dp0.venv-tts\Scripts\python.exe
if not exist "%PYTHON%" (
echo Python virtual environment not found: %PYTHON%
echo Please run setup first or ask WorkBuddy to repair dependencies.
pause
exit /b 1
)
echo Starting Live-streaming service
echo Admin page: http://127.0.0.1:5191/admin
echo Data page: http://127.0.0.1:5191/data
echo Press Ctrl+C to stop
echo.
"%PYTHON%" app\main.py --role all --host 0.0.0.0 --port 5191
pause