-
Notifications
You must be signed in to change notification settings - Fork 32
/
server.js
38 lines (31 loc) · 959 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 dotenv = require('dotenv');
const mongoose = require('mongoose');
// Uncaught exception
process.on('uncaughtException', err => {
console.log('UNCAUGHT EXCEIPTION!⚡ 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);
mongoose
.connect(DB, {
useNewUrlParser: true,
useCreateIndex: true,
useFindAndModify: false,
useUnifiedTopology: true
})
.then(() => console.log('DB connection successful'));
const port = process.env.PORT || 5000;
const server = app.listen(port, () => {
console.log(`App running on port ${port}`);
});
// Unhandled rejection
process.on('unhandledRejection', err => {
console.log('UNHANDLED REJECTION!⚡ Shutting down...');
console.log(err.name, err.message);
server.close(() => {
process.exit(1);
})
});