From 45b4168107c12dffea84a372f6b79d0b4a114fb9 Mon Sep 17 00:00:00 2001 From: DenisN Date: Thu, 13 Mar 2025 06:07:43 -0400 Subject: [PATCH] Test Commit --- src/main.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.ts b/src/main.ts index 45901c4..b8c695c 100644 --- a/src/main.ts +++ b/src/main.ts @@ -3,7 +3,7 @@ import { AppModule } from './app.module'; async function bootstrap() { const app = await NestFactory.create(AppModule); - await app.listen(process.env.PORT ?? 9000); + await app.listen(process.env.PORT ?? 9090); //await app.listen(process.env.PORT ?? 3000); } bootstrap();