output-service-rdb/resources/application.conf
Torma Kristóf 8cc30d35d2
Some checks failed
continuous-integration/drone/push Build is failing
mq done, dao refactor, endpoints refactor
2020-04-06 00:53:56 +02:00

19 lines
420 B
Plaintext

ktor {
deployment {
port = 8080
port = ${?PORT}
}
application {
modules = [ com.kmalbz.ApplicationKt.module ]
}
db {
jdbcUrl = ${DB_URL} //jdbc:postgresql://localhost:${db_port}/${db_name}
dbUser = ${DB_USER}
dbPassword = ${DB_PASSWORD}
}
mq{
host = ${MQ_HOST}
username = ${MQ_USERNMAE}
password = ${MQ_PASSWORD}
}
}