From 89072a25777a62221d06e4aa90d502b9b328cab2 Mon Sep 17 00:00:00 2001 From: JuruSysadmin Date: Wed, 7 Jan 2026 18:45:01 -0300 Subject: [PATCH] feat: Initialize NestJS application with CORS, global validation, Swagger documentation, and server bootstrap. --- src/main.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.ts b/src/main.ts index 3a26112..46ab755 100644 --- a/src/main.ts +++ b/src/main.ts @@ -51,7 +51,7 @@ async function bootstrap() { app.enableShutdownHooks(); - await app.listen(process.env.PORT ?? 3001, '0.0.0.0'); + await app.listen(process.env.PORT ?? 3008, '0.0.0.0'); logger.log(`Server is running on port ${process.env.PORT ?? 3001}`); logger.log( `Swagger documentation available at http://localhost:${process.env.PORT ?? 3001}/api`,