From b034330e34f34894ecb4786f31469a8e6b3ceff0 Mon Sep 17 00:00:00 2001 From: joelson Date: Mon, 5 Jan 2026 14:05:40 -0300 Subject: [PATCH] fix: add console log to indicate API is running on port 8066 --- src/main.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main.ts b/src/main.ts index a26a072..e215c20 100644 --- a/src/main.ts +++ b/src/main.ts @@ -21,4 +21,5 @@ async function bootstrap() { const document = SwaggerModule.createDocument(app, options); SwaggerModule.setup("docs", app, document); await app.listen(8066, '0.0.0.0');} +console.log('API rodando na porta 8066'); bootstrap();