From d34bc13d90b39a06704977f91cf700b0614c24dd Mon Sep 17 00:00:00 2001 From: Ammar Qaffaf Date: Tue, 20 Feb 2024 14:04:18 +0300 Subject: [PATCH] change ports --- apps/auth/src/main.ts | 2 +- apps/backend/src/main.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/auth/src/main.ts b/apps/auth/src/main.ts index 9572bdb..d1e14e8 100644 --- a/apps/auth/src/main.ts +++ b/apps/auth/src/main.ts @@ -3,6 +3,6 @@ import { AuthModule } from './auth.module'; async function bootstrap() { const app = await NestFactory.create(AuthModule); - await app.listen(6001); + await app.listen(7001); } bootstrap(); diff --git a/apps/backend/src/main.ts b/apps/backend/src/main.ts index add741b..7af4000 100644 --- a/apps/backend/src/main.ts +++ b/apps/backend/src/main.ts @@ -3,6 +3,6 @@ import { AppModule } from './app.module'; async function bootstrap() { const app = await NestFactory.create(AppModule); - await app.listen(6000); + await app.listen(7000); } bootstrap();