Hideout/src/main/resources/application.conf

17 lines
272 B
Plaintext

ktor {
development = true
deployment {
port = 8080
port = ${?PORT}
watch = [classes, resources]
}
application {
modules = [dev.usbharu.hideout.ApplicationKt.module]
}
}
hideout {
hostname = "https://localhost:8080"
hostname = ${?HOSTNAME}
}