-
Notifications
You must be signed in to change notification settings - Fork 0
/
server.js
51 lines (44 loc) · 1.56 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
46
47
48
49
50
51
const mongoose = require('mongoose');
const dotenv = require('dotenv');
//This is kept at the start of file so as to start listening to uncaught exceptions right away.
//example of such error is console.log(abc). and it logs 'ReferenceError abc is not defined'.
process.on('uncaughtException', err => {
console.log(err.name, err.message);
console.log('❌ UNCAUGHT EXCEPTION. Shutting Down...');
process.exit(1);
});
dotenv.config({ path: './config.env' });
const app = require('./app');
// ## Setting up connection to mongoDB
const DB = process.env.DB.replace('<PASSWORD>', process.env.DB_PASSWORD);
mongoose
.connect(DB, {
useNewUrlParser: true,
useCreateIndex: true,
useFindAndModify: false,
useUnifiedTopology: true
})
.then(() =>
console.log('DB Connection Successful \n+-+-+-+-+-+-+-+-+-+-+-+-')
);
//Listen to port
const port = process.env.PORT || 8050;
const server = app.listen(port, () => {
console.log(`+-+-+-+-+-+-+-+-+-+-+-+-\nApp running on port: ${port}`);
});
process.on('unhandledRejection', err => {
console.log(err.name, err.message);
console.log('❌ UNHANDLED REJECTION. Shutting Down...');
server.close(() => {
process.exit(1);
});
});
// heroku gives SIGTERM to terminate the app and restart it once every 24hr
// so we catch this signal and close the server gracefully
process.on('SIGTERM', () => {
console.log(' SIGTERM received. Shutting down gracefully');
// server.close() ensures that ongoing requests are begin handled properly
server.close(() => {
console.log('❌ Process Terminated!');
});
});