-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.js
41 lines (34 loc) · 932 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 dotenv = require(`dotenv`);
const mongoose = require("mongoose");
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,
})
.then(() => {
console.log("DB connections succesful!");
});
// Start Server
const port = process.env.PORT;
const server = app.listen(port, () => {
console.log(`We are waiting for the summer... At http://localhost:${port}`);
});
process.on("unhandledRejection", (error) => {
console.log(error.name, error.message);
console.log("Unhandled rejection! Shutting down...");
server.close(() => {
process.exit(1);
});
});
process.on("uncaughtException", (error) => {
console.log(error.name, error.message);
console.log("Uncaught exception! Shutting down...");
server.close(() => {
process.exit(1);
});
});