16 lines
274 B
Plaintext
16 lines
274 B
Plaintext
ktor {
|
|
deployment {
|
|
port = 8080
|
|
port = ${?PORT}
|
|
|
|
}
|
|
mqtt {
|
|
broker = ${?BROKER}
|
|
username = ${?USERNAME}
|
|
password = ${?PASSWORD}
|
|
}
|
|
application {
|
|
modules = [ com.kmlabz.birbnetes.ApplicationKt.module ]
|
|
}
|
|
}
|