-
Notifications
You must be signed in to change notification settings - Fork 7
/
server.ts
91 lines (75 loc) · 2.25 KB
/
server.ts
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
import express from "express";
import compression from "compression";
import morgan from "morgan";
import sourceMapSupport from "source-map-support";
import payload from "payload";
import invariant from "tiny-invariant";
import { createRequestHandler } from "@remix-run/express";
import { installGlobals, type ServerBuild } from "@remix-run/node";
// patch in Remix runtime globals
installGlobals();
require("dotenv").config();
sourceMapSupport.install();
async function start() {
const app = express();
const vite =
process.env.NODE_ENV === "production"
? undefined
: await import("vite").then(({ createServer }) =>
createServer({
server: {
middlewareMode: true,
},
})
);
// Start Payload CMS
invariant(process.env.PAYLOAD_SECRET, "PAYLOAD_SECRET is required");
await payload.init({
secret: process.env.PAYLOAD_SECRET,
express: app,
onInit: () => {
payload.logger.info(`Payload Admin URL: ${payload.getAdminURL()}`);
},
});
app.use(payload.authenticate);
// Express Server setup
app.use(compression());
// http://expressjs.com/en/advanced/best-practice-security.html#at-a-minimum-disable-x-powered-by-header
app.disable("x-powered-by");
// Everything else (like favicon.ico) is cached for an hour. You may want to be
// more aggressive with this caching.
app.use(express.static("public", { maxAge: "1h" }));
app.use(morgan("tiny"));
// handle Remix asset requests
if (vite) {
app.use(vite.middlewares);
} else {
app.use(
"/assets",
express.static("build/client/assets", { immutable: true, maxAge: "1y" })
);
}
app.use(express.static("build/client", { maxAge: "1h" }));
// handle Remix SSR requests
app.all(
"*",
createRequestHandler({
// @ts-expect-error
build: vite
? () => vite.ssrLoadModule("virtual:remix/server-build")
: await import("./build/server/index.js"),
getLoadContext(req, res) {
return {
payload: req.payload,
user: req?.user,
res,
};
},
})
);
const port = process.env.PORT || 3000;
app.listen(port, () =>
console.log("Express server listening on http://localhost:" + port)
);
}
start();