docker, docker-compose, env example

This commit is contained in:
Your Name
2025-03-27 17:56:44 -06:00
parent 30513115c3
commit cac702af43
4 changed files with 60 additions and 8 deletions
+2
View File
@@ -18,5 +18,7 @@ async function bootstrap() {
SwaggerModule.setup('documentation', app, document);
await app.listen(process.env.PORT ?? 3000);
console.log(`Aplicación corriendo en: http://localhost:${process.env.PORT ?? 3000}`);
}
bootstrap();