Skip to content

Commit

Permalink
Full pipeline test
Browse files Browse the repository at this point in the history
  • Loading branch information
LSNicholls committed Jul 29, 2021
1 parent 11af14a commit 627b277
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ const express = require('express');
const app = express();
const port = 8080;

app.get('/', (req, res) => res.send('Hello World from LSNicholls!'));
app.get('/', (req, res) => res.send('Hello World from LSNicholls and this time I mean it!'));

app.listen(port);
console.log(`App running on http://localhost:${port}`);

0 comments on commit 627b277

Please sign in to comment.