-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.js
More file actions
40 lines (31 loc) · 900 Bytes
/
server.js
File metadata and controls
40 lines (31 loc) · 900 Bytes
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
// eslint-disable-next-line import/no-extraneous-dependencies
const mongoose = require('mongoose');
const dotenv = require('dotenv');
process.on('uncaughtException', (err) => {
console.log(err);
console.log('Uncaught Exception');
process.exit(1);
});
dotenv.config({ path: './config.env' });
const app = require('./app');
const DB = process.env.DATABASE;
mongoose.connect(DB).then(() => {
console.log('DB connection successful');
});
const port = process.env.PORT || 3000;
const server = app.listen(port, () => {
console.log(`Running on port ${port}`);
});
process.on('unhandledRejection', (err) => {
console.log(err);
console.log('Unhandled Rejection');
server.close(() => {
process.exit(1);
});
});
process.on('SIGTERM', () => {
console.log('SIGTERM RECEIVED. SHUTTING DOWN GRACEFULLY!!!!');
server.close(() => {
console.log('Process terminated!');
});
});