first commit
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
2021-08-11 14:40:05 +02:00
commit 26acf2085c
27 changed files with 926 additions and 0 deletions

View 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}
}
}