feat: convert python backend to a pure WebSocket API server

This commit is contained in:
akukanara
2026-05-31 16:58:25 +07:00
Unverified
parent a77c6792c0
commit c8c6bc5770
3 changed files with 27 additions and 59 deletions
+2 -2
View File
@@ -6,10 +6,10 @@ set VENV_PYTHON=..\rvc-tts-webui\venv\Scripts\python.exe
if exist "%VENV_PYTHON%" (
echo Menjalankan menggunakan virtual environment dari rvc-tts-webui...
"%VENV_PYTHON%" -u server.py --host 127.0.0.1 --port 8765 --http_port 8000
"%VENV_PYTHON%" -u server.py --host 127.0.0.1 --port 8765
) else (
echo Virtual environment tidak ditemukan, mencoba menggunakan python sistem...
python -u server.py --host 127.0.0.1 --port 8765 --http_port 8000
python -u server.py --host 127.0.0.1 --port 8765
)
pause