Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 42 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,48 @@ lumen-health/

```

## Current MVP Surface

The repository already contains:

- Clinic registration and authentication
- Staff management
- Patient registration, search, and timeline
- Encounter create, claim, and close flows
- Queue board with live updates
- Vitals, notes, diagnoses, and audit views
- Stellar billing intent generation and payment polling
- AI streaming and CDS worker scaffolding

## Main Web Routes

- `/login`
- `/register`
- `/dashboard`
- `/dashboard/queue`
- `/dashboard/encounters`
- `/dashboard/patients`
- `/dashboard/notes`
- `/dashboard/vitals`
- `/dashboard/diagnoses`
- `/dashboard/audit`
- `/dashboard/billing`

## Main API Areas

- `/api/v1/auth`
- `/api/v1/clinics`
- `/api/v1/users`
- `/api/v1/patients`
- `/api/v1/encounters`
- `/api/v1/queue`
- `/api/v1/vitals`
- `/api/v1/notes`
- `/api/v1/diagnoses/search`
- `/api/v1/audit-logs`
- `/api/v1/payments`
- `/api/v1/ai`

### Backend Internal Structure (`apps/api`)

The API follows a **Modular Monolith** pattern. Code is organized by domain, not just technical layer.
Expand Down
Loading