-
Notifications
You must be signed in to change notification settings - Fork 2
/
server.js
45 lines (37 loc) · 1.14 KB
/
server.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
34
35
36
37
38
39
40
41
42
43
44
45
const mongoose = require('mongoose');
const dotenv = require('dotenv');
process.on('uncaughtException', err => {
console.log(err.name, err.message);
process.exit(1);
})
// Connecting env variables
dotenv.config({ path: './config.env' });
const app = require('./app');
const DB = process.env.DATABASE.replace('<PASSWORD>', process.env.DATABASE_PASSWORD);
// Connecting mongoose with our DB
mongoose.connect(DB, {
useNewUrlParser: true,
useCreateIndex: true,
useFindAndModify: false,
useUnifiedTopology: true
}).then(() => console.log('Connection to DB estabilished'));
// Start server
const port = process.env.PORT || 3000;
const server = app.listen(port, () => {
console.log(`Listening from port ${port}`)
});
//For handeling unhandled promise rejection
process.on('unhandledRejection', err => {
// console.log(err.name, err.message);
console.log('Unhandled Rejection!!! Shutting down...');
server.close(() => {
process.exit(1);
});
})
//For handeling SIGTERM signal
process.on('SIGTERM', () => {
console.log('SIGTERM Recieved...Shutting down gracefully..');
server.close(() => {
console.log('Process Terminated');
})
})