This repository has been archived on 2024-06-18. You can view files and clone it, but cannot push or open issues or pull requests.
2022-07-04 19:44:10 -04:00

25 lines
520 B
Plaintext

ktor {
#development = true
deployment {
port = 8080
port = ${?PORT}
}
application {
modules = [ com.wyattjmiller.ApplicationKt.module ]
}
}
storage {
ipAddress = "10.10.10.21"
port = "5432"
driverClassName = "org.postgresql.Driver"
jdbcURL = "jdbc:postgresql://10.10.10.21:5432/recipefolio"
dbUser = "wyatt"
dbPasswd = "wjm"
}
secret = "!$#terces!$#"
issuer = "http://0.0.0.0:8080/"
audience = "http://0.0.0.0:8080/hello"
realm = "Access to 'hello'"