From 606c479a23c56217a86cd9807584eb1cb238f0e2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=98=D0=B2=D0=B0=D0=BD?= Date: Mon, 8 Dec 2025 22:01:14 +0300 Subject: [PATCH] upd port --- src/main.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.ts b/src/main.ts index 82e40a8..4167657 100644 --- a/src/main.ts +++ b/src/main.ts @@ -14,6 +14,6 @@ async function bootstrap() { const documentFactory = () => SwaggerModule.createDocument(app, config); SwaggerModule.setup('api', app, documentFactory); - await app.listen(process.env.PORT ?? 8001); + await app.listen(process.env.PORT ?? 4000); } bootstrap();