LingAdmin/Backend/Services/stop-all.ps1

12 lines
328 B
PowerShell
Raw Permalink Normal View History

2026-04-16 18:13:06 +08:00
# PowerShell script to stop all services
# Usage: .\stop-all.ps1
Write-Host "Stopping LingAdmin Microservices..." -ForegroundColor Yellow
# Stop Dapr services
dapr stop --app-id api-gateway
dapr stop --app-id identity-service
dapr stop --app-id authorization-service
Write-Host "All services stopped." -ForegroundColor Green