Skip to main content

Service URLs & Credentials

Once startup is complete, the following services are available:

Service URLs (Docker mode)

ServiceURLDescription
Frontendhttp://localhost:8082Main UI
Manager APIhttp://localhost:3001Workspace Manager REST API
Manager Swaggerhttp://localhost:3001/docsManager interactive API docs
Manager ReDochttp://localhost:3001/redocManager ReDoc API docs
Runtime APIhttp://localhost:3002Workspace Runtime REST API
Runtime Swaggerhttp://localhost:3002/docsRuntime interactive API docs
Runtime ReDochttp://localhost:3002/redocRuntime ReDoc API docs
Keycloak Adminhttp://localhost:8080/adminAuthentication management console
Draw.iohttp://localhost:8083Diagram tool
Flowerhttp://localhost:5555Celery task monitoring

Default Credentials

Frontend Login

username: admin
password: admin123

Keycloak Admin Console

URL: http://localhost:8080/admin
username: admin
password: admin
Production Environments

The credentials above are development defaults. You must change all passwords and secrets before any production deployment.

Health Check Endpoints

ServiceEndpoint
Workspace ManagerGET http://localhost:3001/health
Workspace RuntimeGET http://localhost:3002/health

Integration Tests

# Run runtime integration tests
python scripts/dev/docker/ops.py test runtime

# Run manager integration tests
python scripts/dev/docker/ops.py test manager

If you already use make, matching convenience targets are also available:

make test-runtime-cli
make test-manager-cli