File size: 760 Bytes
cd5198d | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | @echo off
title VibeVoice Studio Fullstack Launcher
echo ===================================================
echo VibeVoice React + FastAPI Studio Launcher
echo ===================================================
echo.
echo [1/3] Starting VibeVoice FastAPI Backend...
start "VibeVoice API Server" cmd /k "python app.py"
echo.
echo [2/3] Starting Vite React + Tailwind Dev Server...
start "VibeVoice React Frontend" cmd /k "cd frontend && npm run dev"
echo.
echo ===================================================
echo FastAPI API server running on: http://127.0.0.1:8000
echo React Dev frontend running on: http://localhost:5173
echo ===================================================
echo.
echo This launcher window can now be safely closed.
pause
|