-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.js
38 lines (31 loc) · 962 Bytes
/
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
const mongoose = require('mongoose');
const dotenv = require('dotenv');
process.on('uncaughtException', (err) => {
console.log('Unhandled rejection! Shutting Down...');
console.log(err.name, err.message);
process.exit(1);
});
dotenv.config({ path: './config.env' });
const app = require('./app');
const DB = process.env.MONGODB_CONNECTION_STRING.replace(
'<PASSWORD>',
process.env.MONGODB_PASSWORD,
);
mongoose.connect(DB).then((con) => console.log('DB connection successful...'));
const port = process.env.PORT || 3000;
const server = app.listen(port, () => {
console.log(`App running on port ${port}`);
});
process.on('unhandledRejection', (err) => {
console.log('Unhandled rejection! Shutting Down...');
console.log(err);
server.close(() => {
process.exit(1);
});
});
process.on('SIGTERM', () => {
console.log('SIGTERM RECEIVED... Shutting down...');
server.close(() => {
console.log('Process terminated...');
});
});