-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
78 lines (70 loc) · 2.09 KB
/
app.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
const express = require("express");
const dotenv = require("dotenv");
const { default: mongoose } = require("mongoose");
const authRoutes = require("./routes/authRoutes");
const patientRoutes = require("./routes/patientRoutes");
const cookieParser = require("cookie-parser");
const registerRoute = require("./routes/registerRoute");
const doctorRoute = require("./routes/doctorRoute");
const adminRoutes = require("./routes/adminRoutes");
const logoutRoute = require("./routes/logoutRoute");
const cors = require("cors");
const bodyParser = require("body-parser");
const app = express();
const path = require("path");
dotenv.config({ path: "./config.env" });
app.use(cors());
app.use(express.static("public"));
app.use(express.json());
app.use(cookieParser());
const dbURI = process.env.DATABASE;
const port = process.env.PORT || 5000;
// // Middlewares
// app.use(express.urlencoded({ extended: false }));
// app.use(bodyParser.json());
// app.use(
// cors({
// origin: [
// "http://localhost:3000",
// "https://easylife-healthplanet.onrender.com",
// ],
// credentials: true,
// })
// );
mongoose
.connect(dbURI)
.then((result) => {
app.listen(port);
console.log("connected to db and listening at port " + port);
})
.catch((err) => {
app.listen(port);
app.get("/", (req, res) => {
res.send(
"Something Went Wrong! Please Try again after some time, if problem persists please contact us."
);
});
});
app.use(authRoutes);
app.use(registerRoute);
app.use(doctorRoute);
app.use(patientRoutes);
app.use(adminRoutes);
app.use(logoutRoute);
//Static files
app.use(express.static(path.join(__dirname, "./client/build")));
app.get("*", function (_, res) {
res.sendFile(
path.join(__dirname, "./client/build/index.html"),
function (err) {
res.status(500).send(err);
}
);
});
// if (process.env.NODE_ENV == "production") {
// app.use(express.static("client/build"));
// const path = require("path");
// app.get("*", function (req, res) {
// res.sendFile(path.resolve(__dirname, "client", "build", "index.html"));
// });
// }