Files
AIclinicalresearch/重启所有服务.bat
HaHafeng a666649fd4 feat(iit): harden QC pipeline consistency and release artifacts
Implement IIT quality workflow hardening across eQuery deduplication, guard metadata validation, timeline/readability improvements, and chat evidence fallbacks, then synchronize release and development documentation for deployment handoff.

Includes migration/scripts for open eQuery dedupe guards, orchestration/status semantics, report/tool readability fixes, and updated module status plus deployment checklist.

Made-with: Cursor
2026-03-08 21:54:35 +08:00

38 lines
953 B
Batchfile
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
@echo off
chcp 65001 >nul
echo ========================================
echo 停止所有服务并重新启动
echo ========================================
echo.
echo [1/3] 停止所有Node进程...
taskkill /F /IM node.exe >nul 2>&1
timeout /t 2 /nobreak >nul
echo [2/3] 启动后端服务端口3001...
cd /d "%~dp0backend"
start "【后端服务】端口3001" cmd /k "npm run dev"
timeout /t 5 /nobreak >nul
echo [3/3] 启动前端服务端口3000...
cd /d "%~dp0frontend"
start "【前端服务】端口3000" cmd /k "npm run dev"
echo.
echo ========================================
echo ✅ 服务重启完成!
echo ========================================
echo.
echo 📍 前端地址: http://localhost:3000
echo 📍 后端地址: http://localhost:3001
echo.
echo 提示:
echo - 已打开2个新窗口请不要关闭
echo - 请等待15-20秒让服务完全启动
echo - 然后访问 http://localhost:3000
echo.
pause