chore: server listen to 0.0.0.0
This commit is contained in:
parent
e58e4db933
commit
f3078c47ea
1 changed files with 3 additions and 1 deletions
|
|
@ -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}`),
|
||||
);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue