Skip to content

Commit

Permalink
chore: change default port from 3000 to 4000
Browse files Browse the repository at this point in the history
  • Loading branch information
wesleymichael authored Sep 8, 2023
1 parent ae95e08 commit 6772f8a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ async function bootstrap() {
swaggerOptions: { defaultModelsExpandDepth: -1 },
});

const port = process.env.PORT || 3000;
const port = process.env.PORT || 4000;
await app.listen(port, () => {
console.log('Server is up and running on port: ' + port);
});
Expand Down

0 comments on commit 6772f8a

Please sign in to comment.