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.

16 lines
364 B

@echo off
echo 启动代码漏洞检测系统...
echo 启动后端服务...
start "后端服务" cmd /k "cd backend && python main.py"
timeout /t 3 /nobreak > nul
echo 启动前端服务...
start "前端服务" cmd /k "cd frontend && npm start"
echo 系统启动完成!
echo 后端地址: http://localhost:8000
echo 前端地址: http://localhost:3000
pause