Integrate billing-service microservice: add API gateway routing, service discovery with Consul, Docker support, and Spring configuration. Update frontend with API integration, BillingRepository, and BillingViewModel.

This commit is contained in:
2026-04-12 18:00:38 +02:00
parent 11abbf0179
commit 0f2060fc14
12 changed files with 376 additions and 59 deletions
@@ -41,4 +41,10 @@ object ApiRoutes {
const val ROOT = "/api/v1/series"
fun stand(serieId: String) = "$ROOT/$serieId/stand"
}
object Billing {
const val ROOT = "/api/v1/billing"
const val KONTEN = "$ROOT/konten"
fun buchungen(kontoId: String) = "$KONTEN/$kontoId/buchungen"
}
}