From 41ed6d29db94d1bbcc677eeb550d440d0a39d9cd Mon Sep 17 00:00:00 2001 From: NAME Date: Wed, 13 May 2026 07:42:28 +0000 Subject: [PATCH] I --- src/main.ts | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/src/main.ts b/src/main.ts index 0245d78..ac48c7b 100644 --- a/src/main.ts +++ b/src/main.ts @@ -3,6 +3,14 @@ import { AppModule } from './app.module'; async function bootstrap() { const app = await NestFactory.create(AppModule); - await app.listen(process.env.PORT ?? 3004); + const port = process.env.PORT || 3005; + await app.listen(port, () => + + console.log(` + 🔥 X-Poster is running! + 📡 API: http://localhost:${port} + `) + ); + } bootstrap();