fix(server): Read database config directly from environment variables

This commit is contained in:
2025-04-18 22:01:20 +02:00
parent b999cb5832
commit 0f68084f49
8 changed files with 182 additions and 6 deletions
+12
View File
@@ -22,4 +22,16 @@ dependencies {
testImplementation(libs.jupiter.junit.jupiter)
implementation(libs.ktor.server.config.yaml)
testImplementation(libs.junit.junit.jupiter)
// Exposed für Datenbankzugriff (Core, DAO-Pattern, JDBC-Implementierung)
implementation(libs.exposed.core)
implementation(libs.exposed.dao)
implementation(libs.exposed.jdbc)
// JDBC Treiber für PostgreSQL (nur zur Laufzeit benötigt)
runtimeOnly(libs.postgresql.driver)
// HikariCP für Connection Pooling
implementation(libs.hikari.cp)
}