### feat(WebMainScreen, OnlineNennungFormular, index.html)
Build and Publish Docker Images / build-and-push (., backend/services/mail/Dockerfile, mail-service, mail-service) (push) Successful in 5m58s
Build and Publish Docker Images / build-and-push (., config/docker/caddy/web-app/Dockerfile, web-app, web-app) (push) Successful in 4m18s

- **WebMainScreen:** Implementiere hash-basiertes Routing für URLs und Synchronisation mit Adressleiste.
- **OnlineNennungFormular:** Aktualisiere Versionsanzeige mit neuer Farbe und Stil.
- **index.html:** Füge Runtime-Konfiguration per JavaScript hinzu (API, Mail, Keycloak).
This commit is contained in:
2026-04-23 07:16:15 +02:00
parent 6de5b55810
commit eea022b862
3 changed files with 45 additions and 3 deletions
@@ -19,6 +19,13 @@
height: 100%;
}
</style>
<script>
// Runtime configuration injected by Docker entrypoint
window.API_BASE_URL = "${API_BASE_URL}";
window.MAIL_SERVICE_URL = "${MAIL_SERVICE_URL}";
window.KEYCLOAK_URL = "${KEYCLOAK_URL}";
console.log("App Config loaded:", { API: window.API_BASE_URL, Mail: window.MAIL_SERVICE_URL });
</script>
<script type="application/javascript" src="meldestelle-web.js"></script>
</head>
<body>