Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: compose config components #175

Merged
merged 1 commit into from
Aug 1, 2022
Merged

feat: compose config components #175

merged 1 commit into from
Aug 1, 2022

Conversation

menduz
Copy link
Member

@menduz menduz commented Aug 1, 2022

Added the composeConfigProviders function to compose different config providers with fallback logic.

const hardcodedConfig = createRecordConfig({ LOG_LEVEL: 'debug' })
const processEnvConfig = createRecordConfig(process.env)
const dotenvConfig = createDotEnvConfigComponent({})


// this is the real component:
const config = composeConfigProviders(hardcodedConfig, processEnvConfig, dotenvConfig)

assert(await config.getString('LOG_LEVEL') == 'debug')

@menduz menduz merged commit 101c273 into main Aug 1, 2022
@menduz menduz deleted the feat/compose-configs branch August 1, 2022 19:55
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant