Skip to content

Commit

Permalink
Merge pull request #1 from RedHatTraining/hquatrem/express-helloworld
Browse files Browse the repository at this point in the history
Port changed from 3000 to 8080
  • Loading branch information
herve4m committed Sep 19, 2019
2 parents 06547e4 + f6dd2f1 commit 10ba664
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions express-helloworld/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ app.get('/', function (req, res) {
res.send('Hello World!\n');
});

app.listen(3000, function () {
console.log('Example app listening on port 3000!');
app.listen(8080, function () {
console.log('Example app listening on port 8080!');
});

0 comments on commit 10ba664

Please sign in to comment.