Bump version to 3.0.10, remove host configuration, and update server log message

This commit is contained in:
Lechner Julian
2025-07-07 09:02:13 +02:00
parent 02ce94e455
commit 7eb26f3414
3 changed files with 3 additions and 5 deletions
+2 -3
View File
@@ -38,10 +38,9 @@ app.get('**', (req: Request, res: Response, next: NextFunction): void => {
});
if (isMainModule(import.meta.url)) {
const host: string = ProductionConfig.Server.Host;
const port: number = ProductionConfig.Server.Port;
app.listen(port, host, (): void => {
console.log(`✔️ Listening on http://${host}:${port}`);
app.listen(port, (): void => {
console.log(`✔️ Listening on Port ${port}`);
});
}