generated from TeamMrWeb/graphql-mongoose-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
25 lines (24 loc) · 832 Bytes
/
index.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
const { server } = require('./app')
const { global } = require('./config')
const { database_connect } = require('./database')
const { cloudinary_connect } = require('./services/cloudinary.service')
const { check_credentials } = require('./services/email.service')
// export for testing
module.exports = server.listen(global.PORT, async () => {
try {
await check_credentials()
await cloudinary_connect()
await database_connect()
const url = `${global.PROTOCOL}://${global.DOMAIN}:${global.PORT}`
console.info(`Server running`, {
url,
mode: global.MODE,
})
console.info(`GraphiQL running`, {
url: `${url}/graphiql`,
})
} catch (error) {
console.error('Server failed to start')
return process.exit(1)
}
})