From 63c4dd5fe03b9b997261a1c77f7eea55aa821c83 Mon Sep 17 00:00:00 2001 From: joseph le Date: Mon, 2 Oct 2023 11:21:20 +0700 Subject: [PATCH] update index.js --- server/index.js | 1 + 1 file changed, 1 insertion(+) diff --git a/server/index.js b/server/index.js index ad2589a..7c007c3 100644 --- a/server/index.js +++ b/server/index.js @@ -34,6 +34,7 @@ app.get("/api/", (req, res) => { }); const PORT = 8000; + app.listen(PORT, () => { console.log("Server is running on port ", PORT); });