create application
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
2020-10-21 01:20:17 +02:00
parent ab8b440b52
commit e5029c1b3f
14 changed files with 484 additions and 25 deletions

View File

@@ -0,0 +1,15 @@
ktor {
deployment {
port = 8080
port = ${?PORT}
}
mqtt {
broker = ${?BROKER}
username = ${?USERNAME}
password = ${?PASSWORD}
}
application {
modules = [ com.kmlabz.birbnetes.ApplicationKt.module ]
}
}