13 lines
678 B
PowerShell
13 lines
678 B
PowerShell
# 启动开发环境:后端 + 前端
|
|
$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
|