Commit 798da99e authored by Diego Iván's avatar Diego Iván
Browse files

imprimiendo url del servidor

parent b0d62c19
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -5,5 +5,6 @@ import { ServerConstants } from './constants/server.contants';
async function bootstrap() {
  const app = await NestFactory.create(AppModule);
  await app.listen(ServerConstants.PORT);
  console.log(`Application is running on: ${await app.getUrl()}`);
}
bootstrap();