-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.js
More file actions
49 lines (42 loc) · 1.21 KB
/
Copy pathserver.js
File metadata and controls
49 lines (42 loc) · 1.21 KB
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
const dotenv = require('dotenv');
const mongoose = require('mongoose');
// HANDLING ANY OTHER ASYNC ERRORS
process.on('uncaughtException', (err) => {
console.log('UNCAUGHT EXCEPTION! 💥 Shutting Dowm.....');
console.log(err.name, err.message);
process.exit(1);
});
// Adding environment variables to the node
dotenv.config({ path: `${__dirname}/config.env` });
const app = require('./app');
const DB = process.env.DATABASE.replace(
'<password>',
process.env.DATABASE_PASSWORD
);
mongoose
.connect(DB, {
useNewUrlParser: true,
useCreateIndex: true,
useFindAndModify: false,
useUnifiedTopology: true,
})
.then(() => {
console.log('Connected to the database');
});
const server = app.listen(`${process.env.PORT}`, () => {
console.log(`The server is listening at port:${process.env.PORT}`);
});
// HANDLING PROMISE REJECETION
process.on('unhandledRejection', (err) => {
console.log('UNHANDLED REJECTION! 💥. Shutting Down.');
console.log(err.name, err.message);
server.close(() => {
process.exit(1);
});
});
process.on('SIGTERM', () => {
console.log('👋 SIGTERM RECEIVED. Shutting down gracefully');
server.close(() => {
console.log('💥 Process terminated!');
});
});