Disable port 8080

This commit is contained in:
Claude Brisson
2023-06-09 18:16:50 +02:00
parent de028846f1
commit 97cc9d91f0

View File

@@ -108,7 +108,7 @@ private fun launchServer() {
}
// create server
val server = Server(8080) // CB TODO port is to be calculated from webapp.url
val server = Server()
// register webapps
server.handler = ContextHandlerCollection(apiContext, viewContext)