All Downloads are FREE. Search and download functionalities are using the official Maven repository.

kotlin-server-deprecated.libraries.ktor.application.conf.mustache Maven / Gradle / Ivy

There is a newer version: 7.6.0
Show newest version
ktor {
  deployment {
    environment = development
    port = 8080
    autoreload = true
    watch = [ {{packageName}} ]
  }

  application {
    modules = [ {{packageName}}.AppMainKt.main ]
  }
}

# Typesafe config allows multiple ways to provide configuration values without hard-coding them here.
# Please see https://github.com/lightbend/config for details.
auth {
  oauth {
{{#authMethods}}
{{#isOAuth}}
    {{name}} {
        clientId = ""
        clientSecret = ""
    }
{{/isOAuth}}
{{/authMethods}}
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy