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}"
48
48
# 'exec "$@"' replaces the shell process with the given command,
49
49
# ensuring it becomes the main process (PID 1) and receives signals correctly.
50
50
exec " $@ "
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> {
162
162
// ===================================
163
163
const portEnv = process . env . PORT ?? nestConfig . port ?? '3000' ;
164
164
const port = Number . parseInt ( String ( portEnv ) , 10 ) ;
165
+ console . log ( `🛫 CodeBuilder API app taking off listening on http://localhost:${ port } ` ) ;
166
+
165
167
166
168
if ( Number . isNaN ( port ) ) {
167
169
throw new Error ( `PORT environment variable is not a valid number: "${ portEnv } "` ) ;
You can’t perform that action at this time.
0 commit comments