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