-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
42 lines (33 loc) · 1.01 KB
/
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
//init server
const express = require("express");
const app = express();
//imports
const dotenv = require("dotenv");
const mongoose = require("mongoose");
const multer = require("multer");
const path = require("path");
//routes
const authRoute = require("./routes/auth");
const usersRoute = require("./routes/users");
const articlesRoute = require("./routes/articles");
//get mongo url
dotenv.config();
//middleware
app.use(express.json());
//mongoose connection
mongoose
.connect(process.env.MONGO_URL)
.then(console.log("Connected to MongoDB."))
.catch((err) => console.log(err));
//using routes
app.use("/auth", authRoute);
app.use("/users", usersRoute);
app.use("/articles", articlesRoute);
if (process.env.NODE_ENV == "production") {
app.use(express.static("client/build"));
app.get("*", function (req, res) {
res.sendFile(path.resolve(__dirname, "client", "build", "index.html"));
});
}
const port = process.env.PORT || 3080;
app.listen(port, () => console.log(`Server running at port ${port}....`));