同步数据

This commit is contained in:
乘风
2026-02-02 18:27:48 +08:00
parent 46b052d6b4
commit 2aad5d55fd
26 changed files with 781 additions and 220 deletions

View File

@@ -7,13 +7,13 @@
# 方式1: 本地开发启动pnpm start
# 在终端中设置:
# Windows PowerShell: $env:PORT=3006; pnpm start
# Windows CMD: set PORT=3006 && pnpm start
# Linux/Mac: PORT=3006 pnpm start
# Windows PowerShell: $env:PORT=30006; pnpm start
# Windows CMD: set PORT=30006 && pnpm start
# Linux/Mac: PORT=30006 pnpm start
# 方式2: Docker Compose 部署
# 设置 APP_PORT 变量,容器内外端口都使用此值
APP_PORT=3006
APP_PORT=30006
# 方式3: Docker 直接运行
# docker run -e PORT=3007 -p 3007:3007 soul-book
@@ -21,7 +21,7 @@ APP_PORT=3006
# ========================================
# 多项目端口规划建议
# ========================================
# soul-book: 3006
# soul-book: 30006
# other-project: 3007
# api-service: 3008
# ...