Refactor authentication and carousel services; enhance error handling and validation

This commit is contained in:
jorgemike
2025-05-13 19:42:36 -06:00
parent d6a63dae13
commit 6fe658f668
7 changed files with 131 additions and 37 deletions
+5
View File
@@ -20,7 +20,12 @@ async function bootstrap() {
prefix: '/public/',
});
app.enableCors();
await app.listen(AppModule.port);
const port = AppModule.port;
console.log(`Documentacion disponible en: http://localhost:${port}/api`);
console.log(`Servidor desplegado en: http://localhost:${port}`);
}
bootstrap();