This commit is contained in:
21
resources/application.conf
Normal file
21
resources/application.conf
Normal file
@@ -0,0 +1,21 @@
|
||||
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 = "output"
|
||||
exchange = ${?MQ_EXCHANGE}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user