This commit is contained in:
Иван 2025-12-08 22:01:14 +03:00
parent d4423d9e33
commit 606c479a23
1 changed files with 1 additions and 1 deletions

View File

@ -14,6 +14,6 @@ async function bootstrap() {
const documentFactory = () => SwaggerModule.createDocument(app, config); const documentFactory = () => SwaggerModule.createDocument(app, config);
SwaggerModule.setup('api', app, documentFactory); SwaggerModule.setup('api', app, documentFactory);
await app.listen(process.env.PORT ?? 8001); await app.listen(process.env.PORT ?? 4000);
} }
bootstrap(); bootstrap();