-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.js
43 lines (33 loc) · 969 Bytes
/
index.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
const express = require("express");
const app = express();
const mongoose = require("mongoose");
const config = require("./config/config");
const cors = require("cors");
const path = require("path");
const cookieParser = require('cookie-parser');
const PORT = process.env.PORT || 3000;
//Configuring Express
app.use(express.json());
app.use(express.urlencoded({ extended: true }));
app.use(cors());
app.use(cookieParser());
const connectionString = config.URI;
//Configure MongoDB Database
mongoose
.connect(connectionString, {
useNewUrlParser: true,
useUnifiedTopology: true,
})
.then((response) => {
console.log("MongoDB Database Running Successfully");
})
.catch((err) => {
console.log("MongoDB Database not Available ");
});
app.use(express.static(path.join(__dirname, "public")));
const allRoutes = require("./routes/all");
app.use("/", allRoutes);
//Listen
app.listen(PORT, () => {
console.log("Server is running...");
});