This commit is contained in:
Shadowfacts 2019-02-18 15:31:02 -05:00
parent 37ef8afb78
commit d5c6745e2a
Signed by: shadowfacts
GPG Key ID: 94A5AB95422746E5
1 changed files with 5 additions and 1 deletions

View File

@ -13,7 +13,11 @@ const app = express();
// });
const port = process.env.PORT || 3000;
app.get("/", (req, res) => {
res.end("Hello, world!");
});
const port = process.env.PORT || 8083;
app.listen(port, () => {
console.log(`Listening on ${port}`);
});