Skip to content

Commit

Permalink
Fix express port
Browse files Browse the repository at this point in the history
  • Loading branch information
mczachurski committed Nov 10, 2024
1 parent 221b64f commit 16528f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ export function app(): express.Express {
}

function run(): void {
const port = 8081; // process.env['PORT'] || 8081;
const port = process.env['PORT'] || 8080;

// Start up the Node server
const server = app();
Expand Down

0 comments on commit 16528f0

Please sign in to comment.