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.
gold_eyes/start_system.bat

21 lines
511 B

@echo off
echo 启动声源定位系统...
echo.
REM 设置工作目录
cd /d E:\gold_eyes
REM 启动 Flask 后端
start cmd /k "cd src\back-code && python -m pip install flask flask-cors && python flask_app.py"
REM 等待后端启动
timeout /t 2 /nobreak
REM 启动 Vue 前端
start cmd /k "cd src\front-code\sound-vue-frontend && npm install && npm run serve"
echo.
echo 系统已启动!后端和前端服务都在单独的窗口中运行。
echo 请在浏览器中访问: http://localhost:8080
echo.