Files
dashboard/frontend/start.bat
T

19 lines
339 B
Batchfile
Raw Normal View History

@echo off
chcp 65001 >nul
echo ================================================
echo 前端项目 - 启动开发服务器
echo ================================================
echo.
cd /d "%~dp0"
echo 启动开发服务器...
echo.
echo 访问地址:http://localhost:3000
echo API 代理:http://localhost:8083
echo.
pnpm dev
pause