File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -5,6 +5,8 @@ import { AppModule } from './app.module';
55async function bootstrap ( ) {
66 const app = await NestFactory . create ( AppModule ) ;
77 app . useGlobalPipes ( new ValidationPipe ( ) ) ;
8+
89 await app . listen ( 3000 ) ;
10+ console . log ( `Application is running on: ${ await app . getUrl ( ) } ` ) ;
911}
1012bootstrap ( ) ;
Original file line number Diff line number Diff line change @@ -4,5 +4,6 @@ import { AppModule } from './app.module';
44async function bootstrap ( ) {
55 const app = await NestFactory . create ( AppModule ) ;
66 await app . listen ( 3000 ) ;
7+ console . log ( `Application is running on: ${ await app . getUrl ( ) } ` ) ;
78}
89bootstrap ( ) ;
Original file line number Diff line number Diff line change @@ -22,5 +22,6 @@ async function bootstrap() {
2222
2323 await app . startAllMicroservicesAsync ( ) ;
2424 await app . listen ( 3001 ) ;
25+ console . log ( `Application is running on: ${ await app . getUrl ( ) } ` ) ;
2526}
2627bootstrap ( ) ;
Original file line number Diff line number Diff line change @@ -22,5 +22,6 @@ async function bootstrap() {
2222
2323 await app . startAllMicroservicesAsync ( ) ;
2424 await app . listen ( 3001 ) ;
25+ console . log ( `Application is running on: ${ await app . getUrl ( ) } ` ) ;
2526}
2627bootstrap ( ) ;
Original file line number Diff line number Diff line change @@ -4,5 +4,6 @@ import { AppModule } from './app.module';
44async function bootstrap ( ) {
55 const app = await NestFactory . create ( AppModule ) ;
66 await app . listen ( 3000 ) ;
7+ console . log ( `Application is running on: ${ await app . getUrl ( ) } ` ) ;
78}
89bootstrap ( ) ;
Original file line number Diff line number Diff line change @@ -4,5 +4,6 @@ import { AppModule } from './app.module';
44async function bootstrap ( ) {
55 const app = await NestFactory . create ( AppModule ) ;
66 await app . listen ( 3000 ) ;
7+ console . log ( `Application is running on: ${ await app . getUrl ( ) } ` ) ;
78}
89bootstrap ( ) ;
Original file line number Diff line number Diff line change @@ -4,5 +4,6 @@ import { AppModule } from './app.module';
44async function bootstrap ( ) {
55 const app = await NestFactory . create ( AppModule ) ;
66 await app . listen ( 3000 ) ;
7+ console . log ( `Application is running on: ${ await app . getUrl ( ) } ` ) ;
78}
89bootstrap ( ) ;
Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ declare const module: any;
66async function bootstrap ( ) {
77 const app = await NestFactory . create ( AppModule ) ;
88 await app . listen ( 3000 ) ;
9+ console . log ( `Application is running on: ${ await app . getUrl ( ) } ` ) ;
910
1011 if ( module . hot ) {
1112 module . hot . accept ( ) ;
Original file line number Diff line number Diff line change @@ -4,5 +4,6 @@ import { AppModule } from './app.module';
44async function bootstrap ( ) {
55 const app = await NestFactory . create ( AppModule ) ;
66 await app . listen ( 3000 ) ;
7+ console . log ( `Application is running on: ${ await app . getUrl ( ) } ` ) ;
78}
89bootstrap ( ) ;
Original file line number Diff line number Diff line change @@ -13,5 +13,6 @@ async function bootstrap() {
1313 ) ;
1414 app . useGlobalPipes ( new ValidationPipe ( ) ) ;
1515 await app . listen ( 3000 ) ;
16+ console . log ( `Application is running on: ${ await app . getUrl ( ) } ` ) ;
1617}
1718bootstrap ( ) ;
You can’t perform that action at this time.
0 commit comments