VibeVoice / run.bat
RAM2106's picture
Initial VibeVoice Studio commit
cd5198d
Raw
History Blame Contribute Delete
760 Bytes
@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