Files
meldestelle/docs/clients/visionen/MP-26.md
T
stefan 114236c8d9 feat(MP-27): backend consolidation, gateway routing & service dockerfiles
Summary
- Backend Services (Entries, Results, Scheduling) haben Dockerfiles.
- Docker Compose Orchestrierung steht (DB + Gateway + Services).
- Gateway Routing für `entries-service` implementiert (StripPrefix, Path Rewrites).
- Health-Checks und 409-Conflict-Demo Endpunkt verifiziert.

Verification
- `docker compose up --build` -> Success
- `curl http://localhost:8081/api/entries` -> 200 OK (routed through Gateway)

Ref: MP-27
2025-12-08 11:39:43 +01:00

14 lines
777 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
## Epic 6: Shell MeldestellePortal (JS/Wasm)
- Zusammenfassung: Exekutierbare WebShell mit expliziten FeatureDependencies
- Beschreibung:
- Ziel: Eine Shell, die nur benötigte Features bundelt (TreeShaking wirksam) und die Navigation kapselt.
- Schritte:
1. Entry Point/Bootstrap der Shell anlegen (`frontend/shells/meldestelle-portal`).
2. Nur benötigte Features als GradleDependencies einbinden (Pilot: `nennungs-management`).
3. BundleReport aktivieren; CodeSplitting konfigurieren.
- Definition of Done (DoD):
- `./gradlew :frontend:shells:meldestelle-portal:build` erfolgreich.
- BundleReport zeigt, dass ausschließlich integrierte Features im Output sind.
- Navigation aus der Shell zu FeatureRouten funktioniert.