benchmark-service/resources/application.conf

16 lines
272 B
Plaintext
Raw Permalink Normal View History

2020-10-21 01:20:17 +02:00
ktor {
deployment {
port = 8080
port = ${?PORT}
}
2020-10-21 01:44:44 +02:00
mq {
2020-10-21 01:20:17 +02:00
broker = ${?BROKER}
username = ${?USERNAME}
password = ${?PASSWORD}
}
application {
modules = [ com.kmlabz.birbnetes.ApplicationKt.module ]
}
}