v.0.9.0 setup skeleton package.json debugger

This commit is contained in:
TiiJay
2024-11-27 17:46:32 +01:00
parent 681344ec1e
commit c8ef9e7a2c
4 changed files with 111 additions and 31 deletions

View File

@@ -3,6 +3,6 @@ import { NDameProblemModule } from './n-dame-problem.module';
async function bootstrap() {
const app = await NestFactory.create(NDameProblemModule);
await app.listen(process.env.port ?? 3000);
await app.listen(process.env.port ?? 3001);
}
bootstrap();