Skip to content

Commit

Permalink
Merge pull request #154 from VernissageApp/bugfix/fix-express-port
Browse files Browse the repository at this point in the history
Fix express port
  • Loading branch information
mczachurski authored Nov 10, 2024
2 parents 221b64f + 16528f0 commit 5c8d439
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 5c8d439

Please sign in to comment.