## 镜像
一个 Dockerfile 两个 target:api(单二进制)和 web(Caddy + 前端产物)。
旧后端是一个容器里用 supervisord 跑 caddy+gunicorn+dramatiq,这里拆成
oj-web / oj-api / oj-worker 三个容器 —— Docker 本身就是进程管理器,
拆开之后 worker 挂了能单独重启、日志也分得开,少一层 supervisord 要维护。
同一个镜像换个子命令就是 worker,镜像里只有一份运行时。
新增 healthcheck 子命令:运行镜像是 debian-slim,没有 curl/wget,
让二进制自己打 /health(只打 /health 不碰库 —— 库挂了该由库的 healthcheck 报,
不该让 api 跟着被判不健康然后被重启)。
**数据目录照抄旧后端**(test_case、public/upload、public/avatar)。
不是审美问题:切换那天不用搬动任何文件,回滚时旧后端立刻能找到自己的数据。
少一次几十 GB 的 mv,就少一个在停机窗口里出错的机会。
构建路上踩到三个坑,都是「本地能过、容器里过不了」那一类:
- 构建上下文吸进了 data/,judge_server/run 是判题沙箱用别的 uid 建的,
docker 连 stat 都做不了,构建直接失败 → 补 .dockerignore
- mermaid@9.4.3(机房老 Chrome 的 legacy 依赖,不能砍)从容器里连
registry.npmjs.com 稳定失败,主机上没问题 → 换 npmmirror,并重试两次
- 容器里 bun 用 isolated 布局,本地是扁平的。靠「提升」才能解析到的包
在容器里一律解析不到:@node-rs/jieba-linux-x64-gnu(编译要 import 它的 .node)、
以及前端的 @codemirror/{language,state,view} 和 @lezer/highlight。
这些本来就是代码直接 import 的,补成直接依赖。顺手写了个脚本扫全仓,
确认只有这 4 个。
## 前端切回 /api、/ws
迁移期用 /api2、/ws2 指新后端,/api、/ws 还指着 Django。端点已全部搬完,
临时前缀去掉。改动只有三处(api2.ts 的 baseURL、websocket.ts 的两个 URL),
`api2` 那些 import 是模块名不是路径,不动。vite 代理同步收敛成三条。
## compose
- debian:全套(含 postgres,对外开 5445 给机房连)
- school:**没有 postgres**,连服务器的库;本地 Redis + 本地判题沙箱
- 两边共用一个库但各有各的队列和 WS 推送,和旧后端的 Dramatiq/Channels 拓扑一致
密钥一律走 env 且带 `:?`,没设置就直接报错退出,不静默用弱默认值。
COOKIE_SECURE 在机房必须是 false(http 直连 IP,带 Secure 的 Cookie 发不回来,
表现是「登录成功但立刻又变未登录」)。
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
175 lines
5.1 KiB
TypeScript
175 lines
5.1 KiB
TypeScript
import { fileURLToPath, URL } from "node:url"
|
||
import { defineConfig, loadEnv, type Plugin } from "vite"
|
||
import vue from "@vitejs/plugin-vue"
|
||
import legacy from "@vitejs/plugin-legacy"
|
||
import AutoImport from "unplugin-auto-import/vite"
|
||
import Components from "unplugin-vue-components/vite"
|
||
import { NaiveUiResolver } from "unplugin-vue-components/resolvers"
|
||
|
||
// 显式保留 Chrome 90 所需的运行时兼容项,避免 plugin-legacy 对每个产物执行 Babel 扫描。
|
||
// 升级前端依赖后需要重新审计此列表。
|
||
const polyfills = [
|
||
"es.aggregate-error.cause",
|
||
"es.array-buffer.detached",
|
||
"es.array-buffer.transfer-to-fixed-length",
|
||
"es.array-buffer.transfer",
|
||
"es.array.at",
|
||
"es.array.find-last-index",
|
||
"es.array.push",
|
||
"es.array.to-reversed",
|
||
"es.array.to-sorted",
|
||
"es.array.to-spliced",
|
||
"es.array.with",
|
||
"es.error.cause",
|
||
"es.iterator.constructor",
|
||
"es.iterator.drop",
|
||
"es.iterator.every",
|
||
"es.iterator.filter",
|
||
"es.iterator.find",
|
||
"es.iterator.flat-map",
|
||
"es.iterator.for-each",
|
||
"es.iterator.map",
|
||
"es.iterator.reduce",
|
||
"es.iterator.some",
|
||
"es.iterator.to-array",
|
||
"es.json.parse",
|
||
"es.json.stringify",
|
||
"es.map.get-or-insert-computed",
|
||
"es.map.get-or-insert",
|
||
"es.object.has-own",
|
||
"es.regexp.flags",
|
||
"es.set.difference.v2",
|
||
"es.set.intersection.v2",
|
||
"es.set.is-disjoint-from.v2",
|
||
"es.set.is-subset-of.v2",
|
||
"es.set.is-superset-of.v2",
|
||
"es.set.symmetric-difference.v2",
|
||
"es.set.union.v2",
|
||
"es.string.at-alternative",
|
||
"es.typed-array.at",
|
||
"es.typed-array.find-last-index",
|
||
"es.typed-array.find-last",
|
||
"es.typed-array.set",
|
||
"es.typed-array.to-reversed",
|
||
"es.typed-array.to-sorted",
|
||
"es.typed-array.with",
|
||
"es.uint8-array.set-from-base64",
|
||
"es.uint8-array.set-from-hex",
|
||
"es.uint8-array.to-base64",
|
||
"es.uint8-array.to-hex",
|
||
"es.weak-map.get-or-insert-computed",
|
||
"es.weak-map.get-or-insert",
|
||
"esnext.array.group",
|
||
"web.dom-exception.stack",
|
||
"web.immediate",
|
||
"web.structured-clone",
|
||
"web.url-search-params.delete",
|
||
"web.url-search-params.has",
|
||
"web.url-search-params.size",
|
||
"web.url.can-parse",
|
||
]
|
||
|
||
// index.html 里按需注入 MaxKB 脚本(原 Rsbuild EJS 模板的等价实现)
|
||
function injectMaxkb(maxkbUrl: string | undefined): Plugin {
|
||
return {
|
||
name: "inject-maxkb",
|
||
transformIndexHtml(html) {
|
||
if (!maxkbUrl) return html
|
||
return {
|
||
html,
|
||
tags: [
|
||
{
|
||
tag: "script",
|
||
attrs: { async: true, defer: true, src: maxkbUrl },
|
||
injectTo: "head",
|
||
},
|
||
],
|
||
}
|
||
},
|
||
}
|
||
}
|
||
|
||
export default defineConfig(({ mode }) => {
|
||
const env = loadEnv(mode, process.cwd(), "PUBLIC_")
|
||
|
||
// 开发时一律指向本机新后端。PUBLIC_OJ_URL / PUBLIC_WS_URL 是迁移期指向
|
||
// 旧 Django 用的,端点搬完后不再参与代理。
|
||
const newBackend = {
|
||
target: "http://localhost:3000",
|
||
changeOrigin: true,
|
||
}
|
||
|
||
return {
|
||
plugins: [
|
||
vue(),
|
||
// 机房存在 Chrome 91 等旧浏览器:不做 SystemJS 双构建,
|
||
// 只按使用情况给现代产物注入 core-js API polyfill(Array.at 等)
|
||
legacy({
|
||
renderLegacyChunks: false,
|
||
modernTargets: "chrome>=90",
|
||
modernPolyfills: polyfills,
|
||
}),
|
||
AutoImport({
|
||
imports: [
|
||
"vue",
|
||
"vue-router",
|
||
"@vueuse/core",
|
||
"pinia",
|
||
{
|
||
"naive-ui": [
|
||
"useDialog",
|
||
"useMessage",
|
||
"useNotification",
|
||
"useLoadingBar",
|
||
],
|
||
},
|
||
{
|
||
from: "naive-ui",
|
||
imports: [
|
||
"DataTableColumn",
|
||
"FormRules",
|
||
"FormItemRule",
|
||
"SelectOption",
|
||
"UploadCustomRequestOptions",
|
||
"UploadFileInfo",
|
||
"MenuOption",
|
||
"DropdownDividerOption",
|
||
"DropdownOption",
|
||
],
|
||
type: true,
|
||
},
|
||
],
|
||
dts: "./src/auto-imports.d.ts",
|
||
}),
|
||
Components({
|
||
resolvers: [NaiveUiResolver()],
|
||
dts: "./src/components.d.ts",
|
||
}),
|
||
injectMaxkb(env["PUBLIC_MAXKB_URL"]),
|
||
],
|
||
envPrefix: "PUBLIC_",
|
||
resolve: {
|
||
alias: {
|
||
// mermaid-legacy (mermaid@9) 写死了 UMD 路径,新版 cytoscape 的 exports
|
||
// 不允许 import 条件访问它,转到 ESM 产物
|
||
"cytoscape/dist/cytoscape.umd.js": "cytoscape/dist/cytoscape.esm.mjs",
|
||
utils: fileURLToPath(new URL("./src/utils", import.meta.url)),
|
||
oj: fileURLToPath(new URL("./src/oj", import.meta.url)),
|
||
admin: fileURLToPath(new URL("./src/admin", import.meta.url)),
|
||
shared: fileURLToPath(new URL("./src/shared", import.meta.url)),
|
||
},
|
||
},
|
||
server: {
|
||
port: 5173,
|
||
proxy: {
|
||
// 迁移期间 /api2、/ws2 是「新后端」的临时前缀,/api、/ws 还指着 Django。
|
||
// 端点已全部搬完,临时前缀去掉、统一指向新后端 —— 生产的 Caddy 也只认
|
||
// /api、/ws、/public 这三段(docker/Caddyfile)。
|
||
"/api": newBackend,
|
||
"/public": newBackend,
|
||
"/ws": { ...newBackend, ws: true },
|
||
},
|
||
},
|
||
}
|
||
})
|