change ports

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

View File

@ -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();

View File

@ -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();