healthapp
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

30 lines
742 B

@echo off
chcp 65001 >nul
echo ====================================
echo 健康AI助手 - 原型启动脚本
echo ====================================
echo.
echo 即将启动:
echo - Web 原型 (http://localhost:5173)
echo - APP 原型 (Expo)
echo.
echo 测试账号: 13800138000 / 123456
echo ====================================
echo.
:: 启动 Web 开发服务器
start "Web Dev Server" cmd /c "cd /d "%~dp0..\web" && npm run dev"
:: 等待 2 秒
timeout /t 2 /nobreak >nul
:: 启动 APP 开发服务器
start "APP Dev Server" cmd /c "cd /d "%~dp0..\app" && npx expo start --web"
echo.
echo 服务器已在新窗口中启动!
echo.
echo Web: http://localhost:5173
echo APP: http://localhost:8081 (浏览器预览)
echo.
pause