12 lines
328 B
PowerShell
12 lines
328 B
PowerShell
# 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
|