diff --git a/server.js b/server.js index 04be1f4..8bcee99 100644 --- a/server.js +++ b/server.js @@ -27,8 +27,8 @@ app.post("/writenews", function(req, res) { }); // Start listening -app.listen(2019, function (){ - console.log("Listening on port 2019"); +app.listen(8080, function (){ + console.log("Listening on port 8080"); }); // Process incoming posts