refactor: simplify architecture and harden lifecycle

Remove obsolete implementations, centralize background task ownership and terminal-state recovery, consolidate frontend routing and log streaming, and enforce project-wide verification in CI.
This commit is contained in:
Awuqing
2026-08-26 11:32:00 +08:00
parent 95b27af600
commit c06bbec383
189 changed files with 8983 additions and 4264 deletions
+2 -2
View File
@@ -10,7 +10,7 @@ ARG USE_CHINA_MIRROR=false
# ---- Stage 1: Build frontend ----
FROM node:26-alpine AS web-builder
FROM node:24-alpine AS web-builder
ARG USE_CHINA_MIRROR
# 国内镜像:npm 使用淘宝源
@@ -26,7 +26,7 @@ RUN npm run build
# ---- Stage 2: Build backend ----
FROM golang:1.26-alpine AS server-builder
FROM golang:1.25-alpine AS server-builder
ARG USE_CHINA_MIRROR
ARG VERSION=dev