steedos-builder6-config
Installation
SKILL.md
Builder6 Server Configuration | Builder6 服务端配置
Overview | 概述
Configuration is loaded from environment variables via dotenv-flow. Variables with B6_ and STEEDOS_ prefixes are automatically parsed into nested config objects accessible via NestJS ConfigService.
Environment Variable Parsing | 环境变量解析
The getEnvConfigs() function in @builder6/core parses B6_* and STEEDOS_* env vars:
- Underscores become nested keys:
B6_MONGO_URL→configService.get('mongo.url') "true"/"false"→ boolean- Numeric strings → numbers
- Both
B6_andSTEEDOS_prefixes are merged (B6 takes precedence)
Required Environment Variables | 必需环境变量
| Variable | Default | Description |
|---|
Related skills