Compare commits

...

1 Commits

Author SHA1 Message Date
Shadowfacts d5c6745e2a
Update 2019-02-18 15:31:51 -05:00
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}`);
});