Files
MMGame/start.bat
T

30 lines
698 B
Batchfile

@echo off
title AI Murder Mystery MVP
echo ========================================
echo AI Murder Mystery MVP - Launcher
echo ========================================
echo.
set "ROOT=%~dp0"
echo [1/2] Starting backend (port 8000)...
start "MM-Backend" /D "%ROOT%backend" uvicorn app.main:app --reload --port 8000
ping 127.0.0.1 -n 3 >nul
echo [2/2] Starting frontend (port 5173)...
start "MM-Frontend" /D "%ROOT%frontend" npx vite --host
ping 127.0.0.1 -n 3 >nul
echo.
echo ========================================
echo Ready!
echo Backend: http://localhost:8000
echo Frontend: http://localhost:5173
echo ========================================
start http://localhost:5173
pause