yunzer_go/start.bat
2025-10-27 23:13:08 +08:00

24 lines
365 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 936 >nul
echo 启动云泽管理系统...
echo.
echo 1. 启动后端服务...
cd server
start cmd /k "go run main.go"
echo.
echo 2. 等待后端启动完成...
timeout /t 3 /nobreak > nul
echo.
echo 3. 启动前端服务...
cd ..\front
start cmd /k "npm run dev"
echo.
echo 系统启动完成!
echo 前端地址http://localhost:5173
echo 后端地址http://localhost:8080
echo.
pause