Files
CurrenciCombo/scripts/check-status.ps1
defiQUG 3dc8592b83 docs: Update CHANGELOG and README for deployment models and troubleshooting
- Added multi-platform deployment architecture details (Web App, PWA, DApp) to README.md.
- Included comprehensive troubleshooting guides and fix scripts in README.md.
- Enhanced CHANGELOG.md with new features, fixes, and improvements, including TypeScript error resolutions and updated documentation structure.
- Revised development setup instructions in DEV_SETUP.md to reflect changes in script usage and environment variable setup.
2025-11-06 08:09:54 -08:00

60 lines
1.8 KiB
PowerShell

# Quick Status Check Script
Write-Host "`n=== Service Status ===" -ForegroundColor Cyan
# Check Webapp
$webappRunning = $false
try {
$result = Test-NetConnection -ComputerName localhost -Port 3000 -WarningAction SilentlyContinue
if ($result.TcpTestSucceeded) {
$webappRunning = $true
Write-Host "✅ Webapp (3000): Running" -ForegroundColor Green
}
} catch {
Write-Host "❌ Webapp (3000): Not running" -ForegroundColor Red
}
# Check Orchestrator
$orchRunning = $false
try {
$result = Test-NetConnection -ComputerName localhost -Port 8080 -WarningAction SilentlyContinue
if ($result.TcpTestSucceeded) {
$orchRunning = $true
Write-Host "✅ Orchestrator (8080): Running" -ForegroundColor Green
}
} catch {
Write-Host "❌ Orchestrator (8080): Not running" -ForegroundColor Red
}
# Check PostgreSQL
try {
$result = Test-NetConnection -ComputerName localhost -Port 5432 -WarningAction SilentlyContinue
if ($result.TcpTestSucceeded) {
Write-Host "✅ PostgreSQL (5432): Running" -ForegroundColor Green
}
} catch {
Write-Host "⚠️ PostgreSQL (5432): Not running (optional)" -ForegroundColor Yellow
}
# Check Redis
try {
$result = Test-NetConnection -ComputerName localhost -Port 6379 -WarningAction SilentlyContinue
if ($result.TcpTestSucceeded) {
Write-Host "✅ Redis (6379): Running" -ForegroundColor Green
}
} catch {
Write-Host "⚠️ Redis (6379): Not running (optional)" -ForegroundColor Yellow
}
Write-Host "`n=== Quick Access ===" -ForegroundColor Cyan
if ($webappRunning) {
Write-Host "Frontend: http://localhost:3000" -ForegroundColor White
}
if ($orchRunning) {
Write-Host "Backend: http://localhost:8080" -ForegroundColor White
Write-Host "Health: http://localhost:8080/health" -ForegroundColor White
}
Write-Host ""