-
Notifications
You must be signed in to change notification settings - Fork 1
/
server.js
41 lines (34 loc) · 1 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
const dotenv = require('dotenv');
const mongoose = require('mongoose');
const app = require('./app');
// allow access to the enviroment variables
dotenv.config({ path: './.env' });
// catch uncaught exceptions
process.on('uncaughtException', (err) => {
console.log(err, err.message);
console.log('UNCAUGHT EXCEPTION 🚨 Shutting down!');
process.exit(1);
});
//create the database
const DB = process.env.DATABASE.replace(
'<password>',
process.env.DATABASE_PASSWORD,
);
// connect to the database
mongoose.connect(DB).then(() => {
// console.log(connectionObj.connections);
console.log('DB connection successfully established');
});
const port = process.env.PORT || 3000;
// listen to the server
const server = app.listen(port, () => {
console.log(`listening on port ${port}`);
});
// handle unhandled rejection
process.on('unhandledRejection', (err) => {
console.log(err, err.message);
console.log('UNHANDLED REJECTION 🚨 Shutting down! ');
server.close(() => {
process.exit(1);
});
});