-
Notifications
You must be signed in to change notification settings - Fork 4
/
server.js
37 lines (31 loc) · 954 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
const express = require("express");
const app = express();
const mongoose = require("mongoose");
const PORT = process.env.PORT || 5000;
const path = require("path");
app.use(express.urlencoded({ extended: true }));
app.use(express.json());
//mongoose connection
mongoose.connect(
process.env.MONGODB_URI || "mongodb://localhost/Roots",
{
useNewUrlParser: true,
useUnifiedTopology: true,
useCreateIndex: true,
useFindAndModify: true,
},
(err) => {
if (err) throw err;
console.log("connected to mongodb");
}
);
if (process.env.NODE_ENV == "production") {
app.use(express.static("client/build"));
}
//calling the routes
app.use("/api/users", require("./routes/userRoutes"));
app.use("/api/posts", require("./routes/postRoutes"));
app.get("*", (req, res) => {
res.sendFile(path.resolve(__dirname, "client", "build", "index.html"));
});
app.listen(PORT, () => console.log(`Listening at http://localhost:${PORT}`));