express-ts-template/main.ts

12 lines
324 B
TypeScript

import './src/config/env'
import './src/routes/main'
import app from './src/config/express'
const port = process.env.PORT || 3000
app.listen(port, () => {
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`)
})