Convert uhabits-server/build.gradle to Kotlin; use standard paths

This commit is contained in:
2021-01-16 14:44:24 -06:00
parent 8206450456
commit 8c0141508d
26 changed files with 57 additions and 104 deletions

View File

@@ -0,0 +1,9 @@
ktor {
deployment {
port = 8080
port = ${?PORT}
}
application {
modules = [ org.isoron.uhabits.sync.app.SyncApplicationKt.main ]
}
}