output-service-rdb/resources/application.conf

21 lines
424 B
Plaintext
Raw Permalink Normal View History

2020-04-04 18:47:24 +02:00
ktor {
deployment {
port = 8080
port = ${?PORT}
}
application {
modules = [ com.kmalbz.ApplicationKt.module ]
}
2020-04-04 23:21:17 +02:00
db {
2020-04-06 01:17:15 +02:00
jdbc = ${DB_URL}
user = ${DB_USER}
password = ${DB_PASSWORD}
2020-04-04 23:21:17 +02:00
}
mq{
host = ${MQ_HOST}
2020-04-06 01:17:15 +02:00
username = ${MQ_USERNAME}
password = ${MQ_PASSWORD}
2020-04-13 16:21:02 +02:00
exchange = "output"
exchange = ${?MQ_EXCHANGE}
}
2020-04-04 23:21:17 +02:00
}