39 lines
1.7 KiB
Plaintext
39 lines
1.7 KiB
Plaintext
# =============================================================================
|
|
# RWA Backend - Windows Local Development Environment
|
|
# =============================================================================
|
|
# 用于 docker-compose.windows.yml
|
|
#
|
|
# 使用方法:
|
|
# docker-compose -f docker-compose.windows.yml --env-file .env.windows up -d
|
|
# =============================================================================
|
|
|
|
# =============================================================================
|
|
# Database Passwords
|
|
# =============================================================================
|
|
POSTGRES_PASSWORD=rwa_dev_password
|
|
MPC_POSTGRES_PASSWORD=mpc_dev_password
|
|
|
|
# =============================================================================
|
|
# JWT & Security
|
|
# =============================================================================
|
|
# JWT Secret (必须至少32字符)
|
|
JWT_SECRET=dev_jwt_secret_key_min_32_chars_long
|
|
|
|
# Service-to-service JWT Secret
|
|
SERVICE_JWT_SECRET=dev_service_jwt_secret_for_inter_service_auth
|
|
|
|
# =============================================================================
|
|
# MPC System
|
|
# =============================================================================
|
|
# MPC API Key (mpc-service 与 mpc-system 之间的认证)
|
|
MPC_API_KEY=dev_mpc_api_key_for_testing_only
|
|
|
|
# Master encryption key for key shares (64 hex chars = 256 bits)
|
|
CRYPTO_MASTER_KEY=0123456789abcdef0123456789abcdef0123456789abcdef0123456789abcdef
|
|
|
|
# =============================================================================
|
|
# Backup Service
|
|
# =============================================================================
|
|
# Backup encryption key (64 hex chars = 256 bits)
|
|
BACKUP_ENCRYPTION_KEY=fedcba9876543210fedcba9876543210fedcba9876543210fedcba9876543210
|