From 83f8db336ef8d2f82531f2467b21ec7fb7f6ccde Mon Sep 17 00:00:00 2001 From: hamid zarghami Date: Fri, 10 Jul 2026 14:52:49 +0330 Subject: [PATCH] Default port 4000 --- src/main.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.ts b/src/main.ts index 5c6feff..2dc3eea 100644 --- a/src/main.ts +++ b/src/main.ts @@ -37,6 +37,6 @@ async function bootstrap() { app.enableCors(); } - await app.listen(process.env.PORT ?? 3000); + await app.listen(process.env.PORT ?? 4000); } bootstrap();