Files
TurboHR/backend/src/index.ts
T
2026-07-24 17:30:36 +08:00

8 lines
161 B
TypeScript

import app from './app'
const PORT = Number(process.env.PORT) || 3000
app.listen(PORT, '::', () => {
console.log(`Server running on http://[::]:${PORT}`)
})