chore: setup empty express app

This commit is contained in:
Elias Renman
2023-05-21 14:55:57 +02:00
parent 3b7d3b23da
commit bb9407c2fa
29 changed files with 667 additions and 4073 deletions

View File

@@ -1,11 +0,0 @@
import { app } from './app'
import { logger } from './logger'
const port = app.get('port')
const host = app.get('host')
process.on('unhandledRejection', (reason) => logger.error('Unhandled Rejection %O', reason))
app.listen(port).then(() => {
logger.info(`Feathers app listening on http://${host}:${port}`)
})