modificada variable de entorno host en api

This commit is contained in:
2025-06-16 22:54:33 -04:00
parent 92d64db33a
commit 8216cb4e09
3 changed files with 7 additions and 8 deletions

View File

@@ -30,6 +30,6 @@ export const bootstrap = async (app: NestExpressApplication) => {
await swagger(app);
await app.listen(envs.port!, () => {
logger.log(`This application started at ${envs.host}:${envs.port}`);
logger.log(`This application started at ${envs.host_api}:${envs.port}`);
});
};