-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
54 lines (38 loc) · 1.71 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
// ℹ️ Gets access to environment variables/settings
// https://www.npmjs.com/package/dotenv
require("dotenv/config");
// ℹ️ Connects to the database
require("./db");
// Handles http requests (express is node js framework)
// https://www.npmjs.com/package/express
const express = require("express");
const app = express();
// ℹ️ This function is getting exported from the config folder. It runs most pieces of middleware
require("./config")(app);
const { isAuthenticated } = require('./middleware/jwt')
// 👇 Start handling routes here
// Contrary to the views version, all routes are controlled from the routes/index.js
// const allRoutes = require("./routes/index.routes");
// app.use("/api", allRoutes);
const authRouter = require("./routes/auth");
app.use("/api/auth", authRouter);
const profileRouter = require("./routes/profile");
app.use("/api/profile", isAuthenticated, profileRouter);
const tripRouter = require("./routes/trip");
app.use("/api/trips", isAuthenticated, tripRouter);
const couchRouter = require("./routes/couch");
app.use("/api/couches", isAuthenticated, couchRouter);
const inboxRouter = require("./routes/inbox");
app.use("/api/inbox", isAuthenticated, inboxRouter);
const searchRouter = require("./routes/search");
app.use("/api/search", isAuthenticated, searchRouter);
// const userRouter = require("./routes/")
const path = require('path');
app.use(express.static(path.join(__dirname, "/client/build")));
app.use((req, res) => {
// If no routes match, send them the React HTML.
res.sendFile(__dirname + "/client/build/index.html");
});
// ❗ To handle errors. Routes that don't exist or errors that you handle in specific routes
require("./error-handling")(app);
module.exports = app;