Skip to content

Commit b2aa36e

Browse files
committed
updated:server port
1 parent 0aa44e6 commit b2aa36e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/server.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ app.use("/api", router);
99
app.get("/", (req, res) => {
1010
res.send({ msg: "server is working" });
1111
});
12-
app.listen(PORT, () => {
13-
console.log("app is running and listening to port: ", PORT);
12+
app.listen(PORT, "0.0.0.0", () => {
13+
console.log(`App is running and listening on port: ${PORT}`);
1414
});

0 commit comments

Comments
 (0)