- 新增 compose.production.yaml 和 compose.production.server.yaml 部署配置 - 添加 nginx.dev.xuqinmin.com.conf 和 nginx.sentry.xuqinmin.com.conf 反向代理配置 - 创建详细的部署指南文档 deploy/README.md,涵盖架构设计和部署步骤 - 添加前端访问文档 web/README.md,包含线上地址和接口说明 - 补充平台文档总览 README.md,整合各模块文档入口 - 配置多服务容器化部署,包括 tenant-service、im-service、push-service 等 - 设置外部数据库和 Redis 连接配置,确保服务间正确通信 - 配置 WebSocket 和 API 路由转发规则,支持实时通信和版本更新服务
25 行
645 B
JSON
25 行
645 B
JSON
{
|
|
"name": "xuqmgroup-web",
|
|
"private": true,
|
|
"packageManager": "yarn@1.22.22",
|
|
"workspaces": [
|
|
"tenant-platform",
|
|
"ops-platform",
|
|
"docs-site"
|
|
],
|
|
"scripts": {
|
|
"dev:tenant": "yarn workspace tenant-platform dev",
|
|
"dev:ops": "yarn workspace ops-platform dev",
|
|
"dev:docs": "yarn workspace docs-site dev",
|
|
"build:tenant": "yarn workspace tenant-platform build",
|
|
"build:ops": "yarn workspace ops-platform build",
|
|
"build": "yarn workspaces run build"
|
|
},
|
|
"devDependencies": {
|
|
"@vitest/coverage-v8": "^4.1.5",
|
|
"@vue/test-utils": "^2.4.9",
|
|
"happy-dom": "^20.9.0",
|
|
"vitest": "^4.1.5"
|
|
}
|
|
}
|