Configure redis for ktor/koin

This commit is contained in:
2025-03-19 00:30:35 +01:00
parent 6d2043d9fe
commit 8e732b0f9e
7 changed files with 30 additions and 10 deletions

View File

@@ -1,4 +1,9 @@
jwt {
secret = "secret"
secret = ${?JWT_SECRET}
}
redis {
url = "redis://localhost:6379"
url = ${?REDIS_URL}
}