This commit is contained in:
rzmk 2021-06-21 22:06:22 -04:00
parent 82a2c51c00
commit d1b2b93d14

2
app.js
View file

@ -100,6 +100,6 @@ app.get("/posts/:postName", function(req, res){
}) })
app.listen(3000, function() { app.listen(process.env.PORT || 3000, function() {
console.log("Server started on port 3000"); console.log("Server started on port 3000");
}) })