-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathserver.js
More file actions
46 lines (40 loc) · 1.18 KB
/
server.js
File metadata and controls
46 lines (40 loc) · 1.18 KB
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
import "dotenv/config.js";
import express from "express";
import path from "path";
import { fileURLToPath } from "url";
import logger from "morgan";
import cors from "cors";
import { router as profilesRouter } from "./routes/profiles.js";
import { router as authRouter } from "./routes/auth.js";
import { router as postsRouter } from "./routes/posts.js";
import { router as boardsRouter } from "./routes/boards.js";
import { router as reviewsRouter } from "./routes/reviews.js";
import("./config/database.js");
//import('postcss.config.cjs')
const app = express();
app.use(
express.static(
path.join(path.dirname(fileURLToPath(import.meta.url)), "build")
)
);
app.use(cors());
app.use(logger("dev"));
app.use(express.json());
app.use("/api/profiles", profilesRouter);
app.use("/posts", postsRouter);
app.use("/reviews", reviewsRouter);
app.use("/boards", boardsRouter);
app.use("/auth", authRouter);
app.get("/*", function (req, res) {
res.sendFile(
path.join(
path.dirname(fileURLToPath(import.meta.url)),
"build",
"index.html"
)
);
});
const port = process.env.PORT || 3001;
app.listen(port, () => {
console.log(`Express is listening on port ${port}.`);
});