-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.js
More file actions
37 lines (30 loc) · 1 KB
/
Copy pathserver.js
File metadata and controls
37 lines (30 loc) · 1 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
const mongoose = require('mongoose');
const dotenv = require('dotenv');
process.on('uncaughtException', (err) => {
console.log('UNCAUGHT EXCEPTION SHUTTING DOWN...');
console.log(err.name, err.message);
process.exit(1);
});
dotenv.config({ path: './config.env' });
const DB = process.env.DATABASE_CONNECTION.replace(
'<PASSWORD>',
process.env.DATABASE_PASSWORD
);
mongoose
.connect(DB, {
useNewUrlParser: true,
useCreateIndex: true,
useFindAndModify: false,
useUnifiedTopology: true // Add this option to use the new Server Discover and Monitoring engine
})
.then(() => console.log('Connected to MongoDB'))
.catch((err) => console.log('Failed to connect to MongoDB:', err));
const app = require('./app');
const port = process.env.PORT;
const server = app.listen(port);
console.log('App running on port ' + port + '...');
process.on('unhandledRejection', (err) => {
console.log(err);
console.log('UNHANDLED REJECTION SHUTTING DOWN...');
server.close(() => process.exit(1));
});