mirror of https://github.com/usbharu/Hideout.git
21 lines
325 B
Plaintext
21 lines
325 B
Plaintext
ktor {
|
|
development = true
|
|
deployment {
|
|
port = 8080
|
|
port = ${?PORT}
|
|
}
|
|
application {
|
|
modules = [dev.usbharu.hideout.EmptyKt.empty]
|
|
}
|
|
}
|
|
|
|
hideout {
|
|
url = "http://localhost:8080"
|
|
database {
|
|
url = "jdbc:h2:./test;MODE=POSTGRESQL"
|
|
driver = "org.h2.Driver"
|
|
username = ""
|
|
password = ""
|
|
}
|
|
}
|