Add the port in the running log.

This commit is contained in:
Dave Smith-Hayes 2024-10-26 22:16:20 -04:00
parent eda3ac4306
commit 905ee58fc1

View File

@ -59,8 +59,8 @@ app.use("/*", serveStatic({ root: "/static" }));
Bun.serve({ Bun.serve({
fetch: app.fetch, fetch: app.fetch,
port: parseInt(process.env.APP_PORT as string) || 3000, port: parseInt(process.env.APP_PORT as string),
websocket websocket
}); });
console.log(`Chat is running`); console.log(`Chat is running on ${APP_PORT}`);