Initial commit: HealthCarePregnant project documentation and platform

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
selfrelease
2026-06-18 09:48:05 +08:00
commit eab91174db
301 changed files with 42491 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
# PCM 部署编排环境变量示例(复制为 .env;勿提交真实密钥)
# 后端鉴权令牌签名密钥(生产必须为强随机值)
AUTH_SECRET=change-me-to-a-strong-random-secret
# 字段级加密密钥(AES-256-GCM32 字节 hex64/base64;生产经 KMS 注入)
# 生成:node -e "console.log(require('crypto').randomBytes(32).toString('hex'))"
FIELD_ENCRYPTION_KEY=
# PostgreSQLdb 服务)
POSTGRES_USER=postgres
POSTGRES_PASSWORD=postgres
POSTGRES_DB=pcm
# 各服务对外端口(可按环境调整)
BACKEND_PORT=3000
PATIENT_PORT=8081
ADMIN_PORT=8082
FAMILY_PORT=8083