Skip to content

Commit 16f3eef

Browse files
committed
Changed ports of nestjs services to 3001 and 3002
1 parent 824efe6 commit 16f3eef

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

backend/question-service/src/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ import { AppModule } from './app.module';
33

44
async function bootstrap() {
55
const app = await NestFactory.create(AppModule);
6-
await app.listen(3000);
6+
await app.listen(3002);
77
}
88
bootstrap();

backend/user-service/src/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ import { AppModule } from './app.module';
33

44
async function bootstrap() {
55
const app = await NestFactory.create(AppModule);
6-
await app.listen(3000);
6+
await app.listen(3001);
77
}
88
bootstrap();

0 commit comments

Comments
 (0)