-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.js
41 lines (32 loc) · 1004 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
39
40
41
const mongoose = require('mongoose');
const dotenv = require('dotenv');
dotenv.config({ path: './config.env' });
// uncaught exception for synchronous code
process.on('uncaughtException', error => {
console.log(error.name, error.message);
console.log("UNCAUGHT REJECTION APP SHUTTING DOWN");
process.exit(1);
})
const app = require('./app');
const DB = process.env.DATABASE.replace(
'<PASSWORD>',
process.env.DATABASE_PASSWORD
);
mongoose
.connect(process.env.DATABASE_LOCAL)
.then(() => console.log('DB Connection Successful'))
.catch((err) => {
console.log('DB Error: ', err);
});
const port = process.env.PORT || 3000;
const server = app.listen(port, () => {
console.log('Server is started and listening on port 3000...');
});
// unhandled exception for asynchronous code
process.on('unhandledRejection', error => {
console.log(error.name, error.message);
console.log("UNHANDLED REJECTION APP SHUTTING DOWN");
server.close(() => {
process.exit(1);
})
})