You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
An order management admin dashboard that integrates with the enterprise platform services.
Architecture
Browser (3000)
└── BFF / API Gateway (5080)
├── Order Service (5050) → Enterprise Order API (5003)
├── Analytics Service (5060) → Enterprise Analytics (5002)
└── Job Worker (5070) → Enterprise Order API (5003)
Enterprise Platform (must be running on host):
Auth Service :5001
Analytics :5002
Order API :5003
Admin Service :5004
Fraud Service :5005
Prerequisites
The enterprise platform must already be running on localhost:5001-5005 before
starting these services. See the enterprise platform docs for setup instructions.
Quick Start with Docker
# Build and start all services
docker compose up --build
# Start in background
docker compose up -d --build
These credentials are used by the services to authenticate with the enterprise
platform. Use any of the above usernames and their passwords to log into
the admin dashboard UI.
Enterprise Platform Service Tokens (hardcoded in enterprise platform)
Token
Header
Purpose
super-secret-admin-token-that-changes-quarterly
X-Service-Token
Create users in Auth Service
approver_token_2024
X-Approver
Approve high-risk orders
APR-2024-Q1-SECRET
X-Approval-Code
Grant permissions
Running Without Docker
Enterprise services (5001-5005) must be running first.