docs: 更新核心文档和前端代码中的后端目录引用为 server

This commit is contained in:
2026-06-27 17:26:50 +08:00
parent 8f51701f54
commit 5586dc5eac
8 changed files with 24 additions and 24 deletions
+4 -4
View File
@@ -20,7 +20,7 @@ This file provides guidance to Codex (Codex.ai/code) when working with code in t
```
.
├── backend-single/ # Spring Boot 单体后端服务
├── server/ # Spring Boot 单体后端服务
├── web/ # 用户前端 (Vue3 + TS + Vite)
├── web-admin/ # 管理后台 (Vue3 + TS + Element Plus)
├── UniApp/ # 跨平台移动应用 (微信小程序/H5)
@@ -34,11 +34,11 @@ This file provides guidance to Codex (Codex.ai/code) when working with code in t
## 常用命令
### 后端 (backend-single)
### 后端 (server)
```bash
# 进入后端目录
cd backend-single
cd server
# 编译打包
mvn clean package -DskipTests
@@ -47,7 +47,7 @@ mvn clean package -DskipTests
mvn spring-boot:run
# 或直接运行 JAR
java -jar target/backend-single-1.0.0.jar
java -jar target/server-1.0.0.jar
# 运行测试
mvn test