This commit is contained in:
2026-06-30 15:02:20 +08:00
commit 3948b5a48a
306 changed files with 77275 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
# 启动开发环境:后端 + 前端
$root = Split-Path -Parent $MyInvocation.MyCommand.Path
Write-Host "启动后端服务 (backend-node)..." -ForegroundColor Cyan
Start-Process powershell -ArgumentList "-NoExit", "-Command", "cd '$root\backend-node'; npm run dev" -WindowStyle Normal
Write-Host "启动前端服务 (frontweb)..." -ForegroundColor Cyan
Start-Process powershell -ArgumentList "-NoExit", "-Command", "cd '$root\frontweb'; npm run dev" -WindowStyle Normal
Write-Host "开发服务器已启动!" -ForegroundColor Green
Write-Host " 后端: http://localhost:3013" -ForegroundColor Yellow
Write-Host " 前端: http://localhost:5173" -ForegroundColor Yellow