Port Reference - Quick Guide

Development Ports (Fixed)

Common URLs

Web Interface

API Endpoints

Testing Commands

Quick API Tests

# Test API health
curl http://localhost:8001/health

# Get personality profile
curl http://localhost:8001/api/personality/profile/default | jq '.'

# Test enhanced standup
curl "http://localhost:8001/api/standup?personality=true" | jq '.'

# Test basic standup
curl http://localhost:8001/api/standup | jq '.'

Open Web Interfaces

# Open personality preferences
open http://localhost:8081/personality-preferences

# Open main chat interface
open http://localhost:8081/

# Open standup generator
open http://localhost:8081/standup

Port History (For Reference)

Troubleshooting

Connection Issues

  1. Cannot reach 8081: Web server not running
    # Check if web server is running
    lsof -i :8081
    
  2. Cannot reach 8001: API server not running
    # Check if API server is running
    lsof -i :8001
    
  3. Wrong port in browser: Always use 8081 for web interface

Common Mistakes


Last Updated: September 11, 2025 Status: Production Infrastructure Note: These ports are fixed and should not be changed without updating all documentation