Skip to content

Level 1 — platform containers

Mermaid source

%% Level 1 — logical containers / major services (discovery stub)

flowchart LR
  subgraph edge["Edge"]
    API[Partner API / BFF]
    Portal[Partner portal]
  end

  subgraph core["Core"]
    Config[Configuration and feeds]
    Dispatch[Dispatch and routing]
    Events[Event ingestion]
  end

  subgraph data["Data"]
    DB[(Primary store)]
    Secrets[(Secrets reference)]
  end

  Portal --> API
  API --> Config
  API --> Dispatch
  Events --> Dispatch
  Config --> DB
  Dispatch --> Secrets
  Dispatch --> DB