express-ts-template/main.ts

12 lines
324 B
TypeScript
Raw Normal View History

2023-10-24 06:30:39 +00:00
import './src/config/env'
2023-10-24 05:25:21 +00:00
2023-10-24 07:39:10 +00:00
import './src/routes/main'
import app from './src/config/express'
2023-10-24 04:37:49 +00:00
2023-10-24 07:39:10 +00:00
const port = process.env.PORT || 3000
2023-10-24 04:37:49 +00:00
app.listen(port, () => {
2023-10-24 07:39:10 +00:00
console.log(`Server is running at http://0.0.0.0:${port}`)
console.log(`You can visit http://localhost:${port}`)
console.log(`Press CTRL-C to stop \n`)
})