Files
TurboHR/backend/src/index.ts
T
2026-07-23 12:34:43 +08:00

8 lines
152 B
TypeScript

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