-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.js
More file actions
60 lines (48 loc) · 1.19 KB
/
server.js
File metadata and controls
60 lines (48 loc) · 1.19 KB
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
57
58
59
60
const mongoose = require("mongoose");
const dotnev = require("dotenv");
process.on("uncaughtException", (err) => {
console.log(err.name, err.message);
console.log("Uncaght Exception. Shutting Down....");
});
const app = require("./app");
dotnev.config({ path: "./config.env" });
// console.log(app.get('env'))
const DB = process.env.DATABASE.replace(
"<PASSWORD>",
process.env.DATABASE_PASSWORD
);
//console.log(process.env);
//4) Start Server
mongoose
.connect(DB)
.then(() => console.log("DB connection successful!"))
.catch((err) => {
console.log(err);
});
// // Creating document
// const testTour = new Tour({
// name: "The Parkk Camper",
// rating: 4.7,
// price: 997,
// });
// //save the document to database
// testTour
// .save()
// .then((doc) => {
// console.log(doc);
// })
// .catch((err) => {
// console.log(err);
// });
// Creating port aat 3000
const port = 3000;
const server = app.listen(port, () => {
console.log(`App running on port ${port}...`);
});
process.on("unhandledRejection", (err) => {
console.log(err.name, err.message);
console.log("UNHANDLED REJECTION. Shutting Down....");
server.close(() => {
process.exit(1);
});
});