mosdns/dev-vue.bat
dengxiongjian ee06785e08
Some checks are pending
Test mosdns / build (push) Waiting to run
开发web管理
2025-10-15 22:20:27 +08:00

28 lines
586 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 65001 >nul
echo.
echo ====================================
echo MosDNS Vue 开发模式
echo ====================================
echo.
echo 📌 提示:
echo - 终端 1: 运行此脚本Vue 开发服务器)
echo - 终端 2: 运行 Go 后端
echo go run main.go start -c config.yaml
echo.
echo 然后访问: http://localhost:5173
echo.
echo ====================================
echo.
cd web-ui
if not exist "node_modules\" (
echo 📦 首次运行,正在安装依赖...
call npm install
)
echo 🚀 启动 Vue 开发服务器...
npm run dev