input-service/resources/application.conf
Torma Kristóf 9fd976a298
All checks were successful
continuous-integration/drone/push Build is passing
initial commit
2020-05-20 22:25:28 +02:00

21 lines
423 B
Plaintext

ktor {
deployment {
port = 8080
port = ${?PORT}
}
application {
modules = [ com.kmalbz.ApplicationKt.module ]
}
db {
jdbc = ${DB_URL}
user = ${DB_USER}
password = ${DB_PASSWORD}
}
mq{
host = ${MQ_HOST}
username = ${MQ_USERNAME}
password = ${MQ_PASSWORD}
exchange = "input"
exchange = ${?MQ_EXCHANGE}
}
}