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 = ""
  }
}