Skip to content

Commit

Permalink
reinstate previously used port 9000
Browse files Browse the repository at this point in the history
  • Loading branch information
sebalis committed Dec 23, 2021
1 parent 193551a commit 73ae022
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -277,6 +277,6 @@ app.use((err: Error, req: express.Request, res: express.Response, next: express.
res.status(status).render('error', { status });
});

app.listen(9009, () => {
log.info('App listening on :9009');
app.listen(9000, () => {
log.info('App listening on :9000');
});

0 comments on commit 73ae022

Please sign in to comment.