Torma Kristóf
9fd976a298
All checks were successful
continuous-integration/drone/push Build is passing
21 lines
423 B
Plaintext
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}
|
|
}
|
|
} |