42 lines
1.4 KiB
PowerShell
42 lines
1.4 KiB
PowerShell
|
|
# X-Agents 本地启动脚本(Go + 前端)
|
|||
|
|
# 运行方式: .\start-local.ps1
|
|||
|
|
|
|||
|
|
$ErrorActionPreference = "Stop"
|
|||
|
|
|
|||
|
|
Write-Host "======================================" -ForegroundColor Cyan
|
|||
|
|
Write-Host " X-Agents 本地启动 (Go + 前端)" -ForegroundColor Cyan
|
|||
|
|
Write-Host "======================================" -ForegroundColor Cyan
|
|||
|
|
|
|||
|
|
# 1. 启动数据库
|
|||
|
|
Write-Host "[启动] 数据库..." -ForegroundColor Green
|
|||
|
|
docker compose -f docker-compose.dev.yml up -d
|
|||
|
|
|
|||
|
|
# 2. 启动 Go 服务
|
|||
|
|
Write-Host "[启动] Go API 服务..." -ForegroundColor Green
|
|||
|
|
Start-Process powershell -ArgumentList "-NoExit", "-Command", @"
|
|||
|
|
cd $PWD\server
|
|||
|
|
go run ./cmd/api
|
|||
|
|
"@ -WindowStyle Normal
|
|||
|
|
|
|||
|
|
# 3. 启动前端
|
|||
|
|
Write-Host "[启动] 前端服务..." -ForegroundColor Green
|
|||
|
|
if (Test-Path "web/package.json") {
|
|||
|
|
Start-Process powershell -ArgumentList "-NoExit", "-Command", @"
|
|||
|
|
cd $PWD\web
|
|||
|
|
npm run dev
|
|||
|
|
"@ -WindowStyle Normal
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
Write-Host ""
|
|||
|
|
Write-Host "======================================" -ForegroundColor Green
|
|||
|
|
Write-Host " 服务已启动!" -ForegroundColor Green
|
|||
|
|
Write-Host "======================================" -ForegroundColor Green
|
|||
|
|
Write-Host ""
|
|||
|
|
Write-Host "服务地址:" -ForegroundColor White
|
|||
|
|
Write-Host " - Go API: http://localhost:8080" -ForegroundColor Cyan
|
|||
|
|
Write-Host " - 前端: http://localhost:5173" -ForegroundColor Cyan
|
|||
|
|
Write-Host " - MySQL: localhost:6036" -ForegroundColor Cyan
|
|||
|
|
Write-Host " - Redis: localhost:6037" -ForegroundColor Cyan
|
|||
|
|
|
|||
|
|
Read-Host | Out-Null
|