-
Notifications
You must be signed in to change notification settings - Fork 0
/
server.js
56 lines (46 loc) · 1.37 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
const mongoose = require('mongoose');
const http = require('http');
const dotenv = require('dotenv');
// globally handle any uncaught exceptions
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 app = require('./app');
const DB = process.env.DATABASE.replace(
'<PASSWORD>',
process.env.DATABASE_PASSWORD
);
// const DB = process.env.DATABASE_LOCAL;
const port = process.env.PORT || 3000;
const server = http.createServer(app);
const start = async () => {
try {
// connecting to DB
await mongoose
.connect(DB)
.then(() => console.log('DB connection successful'));
// start server
server.listen(port, () => console.log(`App running on port ${port}...`));
// catch any error on attempt to connect to DB
} catch (error) {
console.log(error.name, error.message);
}
};
// globally handle any unhandled rejected promises
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 recieved! Shutting down gracefully...');
server.close(() => {
console.log('💥 Process terminated');
});
});
start();