change ports

This commit is contained in:
Ammar Qaffaf
2024-02-20 14:04:18 +03:00
parent 482a71f53c
commit d34bc13d90
2 changed files with 2 additions and 2 deletions

View File

@ -3,6 +3,6 @@ import { AuthModule } from './auth.module';
async function bootstrap() { async function bootstrap() {
const app = await NestFactory.create(AuthModule); const app = await NestFactory.create(AuthModule);
await app.listen(6001); await app.listen(7001);
} }
bootstrap(); bootstrap();

View File

@ -3,6 +3,6 @@ import { AppModule } from './app.module';
async function bootstrap() { async function bootstrap() {
const app = await NestFactory.create(AppModule); const app = await NestFactory.create(AppModule);
await app.listen(6000); await app.listen(7000);
} }
bootstrap(); bootstrap();