improve: tell user that the WebUI is available #631

Merged
Sainan merged 2 commits from improve-startup into main 2024-12-23 13:48:17 -08:00
Showing only changes of commit a987b7a17f - Show all commits

View File

@ -26,6 +26,10 @@ void (async (): Promise<void> => {
logger.info("HTTP server started on port " + httpPort);
https.createServer(options, app).listen(httpsPort, () => {
logger.info("HTTPS server started on port " + httpsPort);
logger.info(
"Access the WebUI in your browser at http://localhost" + (httpPort == 80 ? "" : ":" + httpPort)
);
});
});
})();