diff --git a/Prototype/server/src/app.ts b/Prototype/server/src/app.ts index ac593ed..efefe83 100644 --- a/Prototype/server/src/app.ts +++ b/Prototype/server/src/app.ts @@ -25,4 +25,6 @@ RegisterRoutes(router); app.use(swaggerSpecs.basePath, router); app.use(errorHandler); -app.listen(PORT, () => console.log(`Application is running on http://localhost:${PORT}`)); +app.listen(PORT, "0.0.0.0", () => + console.log(`Application is running on http://localhost:${PORT}`), +);