forked from andresayac/baileys-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.js
33 lines (26 loc) · 791 Bytes
/
app.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
import 'dotenv/config'
import express from 'express'
import nodeCleanup from 'node-cleanup'
import routes from './routes.js'
import { init, cleanup } from './whatsapp.js'
import cors from 'cors'
import apikeyValidator from './middlewares/apikeyValidator.js'
const app = express()
const host = process.env.HOST || undefined
const port = parseInt(process.env.PORT ?? 8000)
app.use(cors())
app.use(express.urlencoded({ extended: true }))
app.use(express.json())
app.use(apikeyValidator)
app.use('/', routes)
const listenerCallback = () => {
init()
console.log(`Server is listening on http://${host ? host : 'localhost'}:${port}`)
}
if (host) {
app.listen(port, host, listenerCallback)
} else {
app.listen(port, listenerCallback)
}
nodeCleanup(cleanup)
export default app