File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed
Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -48,3 +48,5 @@ echo -e "${BLUE}🚀 Starting NestJS application...${NC}"
4848# 'exec "$@"' replaces the shell process with the given command,
4949# ensuring it becomes the main process (PID 1) and receives signals correctly.
5050exec " $@ "
51+
52+ echo -e " ${RED} 🚀 NestJS Application Process Exited...${NC} "
Original file line number Diff line number Diff line change @@ -162,6 +162,8 @@ async function bootstrap(): Promise<void> {
162162 // ===================================
163163 const portEnv = process . env . PORT ?? nestConfig . port ?? '3000' ;
164164 const port = Number . parseInt ( String ( portEnv ) , 10 ) ;
165+ console . log ( `🛫 CodeBuilder API app taking off listening on http://localhost:${ port } ` ) ;
166+
165167
166168 if ( Number . isNaN ( port ) ) {
167169 throw new Error ( `PORT environment variable is not a valid number: "${ portEnv } "` ) ;
You can’t perform that action at this time.
0 commit comments