katoikia-app/servicio-usuarios/src/main.ts

19 lines
495 B
TypeScript
Raw Normal View History

2022-07-25 04:38:48 +00:00
import { NestFactory } from '@nestjs/core';
import { Transport } from '@nestjs/microservices';
import { AppModule } from './app.module';
import { Logger } from '@nestjs/common';
2022-06-29 09:23:07 +00:00
const logger = new Logger();
async function bootstrap() {
const app = await NestFactory.createMicroservice(AppModule, {
transport: Transport.TCP,
options: {
2022-07-25 04:38:48 +00:00
host: '127.0.0.1',
port: 3001,
},
2022-06-29 09:23:07 +00:00
});
2022-07-25 04:38:48 +00:00
app.listen().then(() => logger.log('Microservice Usuarios is listening'));
2022-06-29 09:23:07 +00:00
}
2022-07-25 04:38:48 +00:00
bootstrap();