From bf9b2b82e1d1d6cd7a901b674d8df92af073794c Mon Sep 17 00:00:00 2001 From: "Mark H. Wood" Date: Tue, 22 Aug 2023 17:07:20 -0400 Subject: [PATCH] Document a modified method as required by PR guidelines. --- server.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/server.ts b/server.ts index 47284175a4..4d2ee500be 100644 --- a/server.ts +++ b/server.ts @@ -544,6 +544,9 @@ function createHttpsServer(keys) { }); } +/** + * Create an HTTP server with the configured port and host. + */ function run() { const port = environment.ui.port || 4000; const host = environment.ui.host || '/';