From b713be161431729305701f80b3b6f53d2f07f62a Mon Sep 17 00:00:00 2001 From: ertopogo Date: Fri, 20 Feb 2026 19:36:00 +0100 Subject: Initial commit: schemas infrastructure Arauco avec serveur web --- micro/applications/korradi_stack.mmd | 87 ++++++++++++++++++++++++++++++++++++ 1 file changed, 87 insertions(+) create mode 100644 micro/applications/korradi_stack.mmd (limited to 'micro/applications') diff --git a/micro/applications/korradi_stack.mmd b/micro/applications/korradi_stack.mmd new file mode 100644 index 0000000..bbdf355 --- /dev/null +++ b/micro/applications/korradi_stack.mmd @@ -0,0 +1,87 @@ +%%{init: {'theme': 'base', 'flowchart': {'nodeSpacing': 40, 'rankSpacing': 50}}}%% +flowchart TB + subgraph infra ["Infrastructure - Docker / Traefik"] + traefik["Traefik
Reverse Proxy
SSL termination"] + compose["docker-compose.yml
infra/"] + end + + subgraph frontend ["Frontend - apps/portal"] + nextjs["Next.js 15
React 19 + TypeScript"] + r3f["React Three Fiber
Scenes 3D"] + tailwind["Tailwind CSS
+ Radix + shadcn/ui"] + zustand["Zustand
State management"] + tanstack["TanStack Query
Data fetching"] + intl["next-intl
i18n"] + end + + subgraph backend ["Backend - services/event-hub"] + fastify["Fastify
API REST + tRPC"] + socketio["Socket.IO
Temps reel / WebSocket"] + zod["Zod
Validation schemas"] + end + + subgraph sdk ["Packages - packages/widget-sdk"] + widget_sdk["Widget SDK
Embeds + iframes sandboxes"] + events["Systeme d evenements
postMessage"] + end + + subgraph identity ["Identite - IAM"] + keycloak["Keycloak
npagnun:8080
OIDC / JWT"] + end + + subgraph data ["Donnees (prevu)"] + postgres["PostgreSQL
Prisma ORM"] + redis["Redis
Cache + sessions"] + end + + subgraph monitoring ["Observabilite (prevu)"] + otel["OpenTelemetry"] + sentry["Sentry
Error tracking"] + posthog["PostHog
Analytics"] + end + + subgraph tooling ["Tooling"] + turbo["TurboRepo
Monorepo"] + pnpm["PNPM
Package manager"] + end + + traefik --> nextjs + traefik --> fastify + nextjs --> zustand + nextjs --> tanstack + nextjs --> r3f + nextjs --> tailwind + nextjs --> intl + tanstack -->|"API calls"| fastify + fastify --> socketio + fastify --> zod + fastify -->|"Prisma"| postgres + fastify --> redis + nextjs -->|"OIDC"| keycloak + fastify -->|"Token verify"| keycloak + widget_sdk --> events + widget_sdk -->|"iframe"| nextjs + turbo --> frontend + turbo --> backend + turbo --> sdk + + classDef infraStyle fill:#2a3a4a,stroke:#6a8aaa,color:#b0d0e8 + classDef feStyle fill:#1e3a5f,stroke:#4a90d9,color:#a8d0f0 + classDef beStyle fill:#1e4a2e,stroke:#4a9a6a,color:#a8e0c0 + classDef sdkStyle fill:#3a1e5f,stroke:#8a6ad9,color:#c8b0f0 + classDef iamStyle fill:#4a1e3a,stroke:#d94a8a,color:#f0a8c8 + classDef storStyle fill:#4a3a1e,stroke:#d9a84a,color:#f0d8a8 + classDef dormStyle fill:#2a2a2a,stroke:#666,color:#999 + classDef toolStyle fill:#3a3a1e,stroke:#9a9a4a,color:#e0e0a8 + + class traefik,compose infraStyle + class nextjs,r3f,tailwind,zustand,tanstack,intl feStyle + class fastify,socketio,zod beStyle + class widget_sdk,events sdkStyle + class keycloak iamStyle + class postgres,redis storStyle + class otel,sentry,posthog dormStyle + class turbo,pnpm toolStyle + + style data stroke-dasharray: 5 5 + style monitoring stroke-dasharray: 5 5 -- cgit v1.2.3