From b29bb8920166f96a2b8e6f4ca2d82add5f6364c4 Mon Sep 17 00:00:00 2001 From: Fawzi Mahmoud Date: Fri, 8 Dec 2023 10:57:48 -0600 Subject: [PATCH] bug fix --- app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.js b/app.js index 75ec2ac..85a4796 100644 --- a/app.js +++ b/app.js @@ -54,7 +54,7 @@ app.use(function(err, req, res, next) { }); // Set the port to the environment variable PORT, or 3000 if it's not set -const port = process.env.PORT || 3000; +const port = process.env.PORT || 8080; // Start the server on the specified port app.listen(port, () => {