From eda3ac4306c88d7c2a19a93de84a80fa95439fc2 Mon Sep 17 00:00:00 2001 From: Dave Smith-Hayes Date: Sat, 26 Oct 2024 22:14:27 -0400 Subject: [PATCH] Add some outputting from the application. --- chat-app/src/index.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/chat-app/src/index.ts b/chat-app/src/index.ts index e1183df..e9c4701 100644 --- a/chat-app/src/index.ts +++ b/chat-app/src/index.ts @@ -62,3 +62,5 @@ Bun.serve({ port: parseInt(process.env.APP_PORT as string) || 3000, websocket }); + +console.log(`Chat is running`);