(source: EnvSource)
| 310 | }); |
| 311 | |
| 312 | const readValkey = (source: EnvSource) => ({ |
| 313 | VALKEY_HOST: source.VALKEY_HOST ?? "localhost", |
| 314 | VALKEY_PORT: toInt(source.VALKEY_PORT, 6379, "VALKEY_PORT"), |
| 315 | VALKEY_PASSWORD: source.VALKEY_PASSWORD ?? "", |
| 316 | VALKEY_DB: toInt(source.VALKEY_DB, 0, "VALKEY_DB"), |
| 317 | }); |
| 318 | |
| 319 | const readRaw = (source: EnvSource): Record<string, unknown> => ({ |
| 320 | ...readCore(source), |