-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathapp.js
43 lines (33 loc) · 1.06 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
import express from "express";
import path, { dirname } from "path";
import cookieParser from "cookie-parser";
import logger from "morgan";
import { fileURLToPath } from "url";
import indexRouter from "./routes/index.js";
import authRouter from "./routes/auth.js";
import session from "express-session";
import passport from "passport";
// ES6 modules don't have __dirname
const __filename = fileURLToPath(import.meta.url);
const __dirname = dirname(__filename);
let app = express();
app.use(logger("dev"));
app.use(express.json());
app.use(express.urlencoded({ extended: false }));
app.use(cookieParser());
app.use(express.static(path.join(__dirname, "front", "dist")));
app.use(
session({
secret: "my_secret_key",
resave: false,
saveUninitialized: true,
}),
);
app.use(passport.authenticate("session"));
app.use("/", indexRouter);
app.use("/", authRouter);
// All remaining requests return the React app, so it can handle routing
app.get("*", (req, res) => {
res.sendFile(path.resolve(__dirname, "front", "dist", "index.html"));
});
export default app;