Skip to content

Commit

Permalink
listening on 80
Browse files Browse the repository at this point in the history
  • Loading branch information
Peter Ma authored and Peter Ma committed Sep 25, 2018
1 parent d0f1e67 commit 9e86a33
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,12 @@ expressapp.get('/create', (req, res) => {
res.render('create.html');
});


expressapp.get('/profile', (req, res) => {
res.render('profile.html');
});

expressapp.listen(8080, () => {
expressapp.listen(80, () => {
//console.log(`App listening on port ${PORT}`);
console.log('Press Ctrl+C to quit.');
});
Expand Down

0 comments on commit 9e86a33

Please sign in to comment.