fix: add console log to indicate API is running on port 8066
Deploy vendaweb-api / build-and-push-deploy (push) Successful in 2m44s
Details
Deploy vendaweb-api / build-and-push-deploy (push) Successful in 2m44s
Details
This commit is contained in:
parent
61cdae600c
commit
b034330e34
|
|
@ -21,4 +21,5 @@ async function bootstrap() {
|
||||||
const document = SwaggerModule.createDocument(app, options);
|
const document = SwaggerModule.createDocument(app, options);
|
||||||
SwaggerModule.setup("docs", app, document);
|
SwaggerModule.setup("docs", app, document);
|
||||||
await app.listen(8066, '0.0.0.0');}
|
await app.listen(8066, '0.0.0.0');}
|
||||||
|
console.log('API rodando na porta 8066');
|
||||||
bootstrap();
|
bootstrap();
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue