Files
Agent-n8n/web_frontend/exhibition-demo/start-windows.bat

26 lines
584 B
Batchfile
Raw Normal View History

@echo off
echo ================================================
echo Starting Exhibition Demo Frontend (Windows)
echo ================================================
REM 使用 Windows 配置文件
copy /Y vite.config.ts.windows vite.config.ts
REM 安装依赖(如果需要)
echo Checking dependencies...
if not exist node_modules (
echo Installing dependencies...
npm install
)
echo.
echo Starting development server...
echo Access URLs:
echo - Local: http://localhost:4173
echo - Network: http://192.168.x.x:4173
echo.
REM 启动开发服务器
npm run dev
pause