feat: add MMGame backend and frontend source code

This commit is contained in:
gmh01
2026-08-01 21:30:23 +08:00
parent 26ce0dd600
commit c176c04aab
42 changed files with 3606 additions and 0 deletions
+29
View File
@@ -0,0 +1,29 @@
@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