2026-06-14 11:33:31 +08:00
|
|
|
# iloom 微服务环境变量配置
|
2026-06-17 23:16:17 +08:00
|
|
|
# Copy this file to .env and fill in real values. NEVER commit .env to git.
|
2026-06-14 11:33:31 +08:00
|
|
|
|
|
|
|
|
# MySQL (共享 muyu_wms 数据库)
|
2026-06-17 23:16:17 +08:00
|
|
|
MYSQL_ROOT_PASSWORD=your_mysql_password_here
|
|
|
|
|
DB_DSN=root:your_password@tcp(mysql:3306)/muyu_wms?parseTime=true&charset=utf8mb4
|
2026-06-14 11:33:31 +08:00
|
|
|
|
|
|
|
|
# JWT (复用 muyu 认证)
|
2026-06-17 23:16:17 +08:00
|
|
|
JWT_SECRET=your_jwt_secret_here
|
|
|
|
|
JWT_REFRESH_SECRET=your_jwt_refresh_secret_here
|
2026-06-14 11:33:31 +08:00
|
|
|
|
|
|
|
|
# muyu gRPC 地址
|
|
|
|
|
MUYU_SYSTEM_RPC_ADDR=system-rpc:9001
|
|
|
|
|
MUYU_INVENTORY_RPC_ADDR=inventory-rpc:9002
|
|
|
|
|
|
|
|
|
|
# 服务间调用密钥
|
2026-06-17 23:16:17 +08:00
|
|
|
INTERNAL_SERVICE_KEY=your_internal_service_key_here
|
2026-06-14 11:33:31 +08:00
|
|
|
|
|
|
|
|
# 服务端口
|
|
|
|
|
GATEWAY_PORT=8080
|
|
|
|
|
AUTH_SERVICE_PORT=8081
|
|
|
|
|
PURCHASER_SERVICE_PORT=8082
|
|
|
|
|
TEXTILE_SERVICE_PORT=8083
|
|
|
|
|
WASHING_SERVICE_PORT=8084
|
|
|
|
|
|
|
|
|
|
# 前端
|
|
|
|
|
FRONTEND_URL=http://localhost:3015
|
|
|
|
|
|
|
|
|
|
# CORS
|
|
|
|
|
ALLOW_ORIGINS=http://localhost:3015,http://localhost:3000
|