Skip to content

Commit

Permalink
feat: add console log for server running status
Browse files Browse the repository at this point in the history
  • Loading branch information
ptsgrn committed Jan 7, 2025
1 parent 24e0929 commit fcb87c0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Binary file modified bun.lockb
Binary file not shown.
4 changes: 3 additions & 1 deletion core/web.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,6 @@ export const app = new Elysia()
yield `[${now()}] Deployment completed in ${end - start}ms\n`
yield `</pre></body></html>`
})
.listen(process.env.PORT || 3000)
.listen(process.env.PORT || 3000)

console.log(`Server running at :${process.env.PORT || 3000}`)

0 comments on commit fcb87c0

Please sign in to comment.