Files
CurrenciCombo/docs/CURRENT_STATUS.md

1.0 KiB

Current Services Status

Running Services

1. Webapp (Next.js Frontend)

2. Orchestrator (Express Backend)

⚠️ Optional Services

3. PostgreSQL Database

  • Status: ⚠️ Not running (requires Docker)
  • Port: 5432
  • To Start: docker-compose up -d postgres

4. Redis Cache

  • Status: ⚠️ Not running (requires Docker)
  • Port: 6379
  • To Start: docker-compose up -d redis

Quick Commands

Check Status

# Check ports
netstat -ano | findstr ":3000 :8080"

# Check processes
Get-Process node

Start Individual Services

# Webapp
cd webapp; npm run dev

# Orchestrator
cd orchestrator; npm run dev

Start All (with script)

.\scripts\start-all.ps1

Last Checked: 2025-01-15