Validates and coerces the raw process environment against AppConfigSchema. Called by NestJS ConfigModule.forRoot({ validate }) at application startup.
AppConfigSchema
ConfigModule.forRoot({ validate })
Raw key/value map from process.env.
process.env
The validated and type-coerced application configuration.
If validation fails; the error message lists all invalid fields.
Validates and coerces the raw process environment against
AppConfigSchema. Called by NestJSConfigModule.forRoot({ validate })at application startup.