Skip to content

Commit

Permalink
fix: mention embetty server version on bootstrap
Browse files Browse the repository at this point in the history
  • Loading branch information
pmb0 committed Sep 9, 2024
1 parent 30ec965 commit 0db1d8f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion embetty-server/src/server.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
/* eslint-disable no-console */
import { version } from '../package.json'
import { app } from './app'

// eslint-disable-next-line @typescript-eslint/no-magic-numbers
const server = app.listen(process.env.PORT || 3000)

// eslint-disable-next-line no-console
console.log('🐙 Embetty Server', version)
console.log('Listening on port', server.address())

0 comments on commit 0db1d8f

Please sign in to comment.