We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0aa44e6 commit b2aa36eCopy full SHA for b2aa36e
src/server.ts
@@ -9,6 +9,6 @@ app.use("/api", router);
9
app.get("/", (req, res) => {
10
res.send({ msg: "server is working" });
11
});
12
-app.listen(PORT, () => {
13
- console.log("app is running and listening to port: ", PORT);
+app.listen(PORT, "0.0.0.0", () => {
+ console.log(`App is running and listening on port: ${PORT}`);
14
0 commit comments