We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 25a3039 commit c78fafbCopy full SHA for c78fafb
servers/mumu/src/index.ts
@@ -28,7 +28,7 @@ app.get("/health", (_req, res) => {
28
res.status(200).json({ status: "ok" });
29
});
30
31
-const port = process.env.PORT || 3000;
+const port = Number(process.env.PORT) || 3000;
32
33
app.listen(port, () => {
34
console.log(`mumu server running on port:${port}`);
0 commit comments