Skip to content

Commit

Permalink
Update index.ts
Browse files Browse the repository at this point in the history
defaulting app to listen on 8080
  • Loading branch information
MattG57 authored Jan 19, 2025
1 parent 7888757 commit 7301fe0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import App from './app.js';

const app = new App(Number(process.env.PORT) || 80);
const app = new App(Number(process.env.PORT) || 8080);

['SIGTERM', 'SIGINT', 'SIGQUIT'].forEach(signal => {
process.on(signal, async () => {
Expand Down

0 comments on commit 7301fe0

Please sign in to comment.