Files
miniplan/private/minis-backend/application_base.conf
T

26 lines
363 B
Plaintext

ktor {
development = true
deployment {
port = ${PORT}
}
application {
modules = [ de.walamana.ApplicationKt.module ]
}
}
jwt {
secret = ${SECRET}
issuer = "http://0.0.0.0:8080/"
audience = "http://0.0.0.0:8080/"
realm = "mini-data"
}
database {
url = "jdbc:h2:file:./db"
driver = "org.h2.Driver"
}
admin {
password = ${ADMIN}
}