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

Better environment value interface #656

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open

Better environment value interface #656

wants to merge 4 commits into from

Conversation

nlarew
Copy link
Collaborator

@nlarew nlarew commented Mar 11, 2025

Changes

  • Adds a new function, getEnv(), that is more precise and flexible than assertEnvVars()
    • Required vars are listed by name in a list, without the extra empty string value for each var
    • [NEW] Optional vars are listed in an object that maps to default values
  • Does NOT replace any instance of assertEnvVars() or our defined env var objects. TBD in another PR

Example

const env = getEnv(
  required: ["OPENAI_ENDPOINT"],
  optional: {
    "PORT": "3000",
    "SLACK_BOT_TOKEN": undefined,
  }
);

env.OPENAI_ENDPOINT; // string
env.PORT; // string
env.SLACK_BOT_TOKEN; // string | undefined

@nlarew nlarew requested a review from Copilot March 13, 2025 20:19
Copy link

@Copilot Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull Request Overview

This pull request introduces a new function, getEnv(), which provides a more precise interface for handling environment variables by allowing explicit declarations of required and optional variables.

  • Adds a new getEnv() function that reads and returns environment variables from process.env
  • Enhances flexibility by allowing optional variables to default to specified values
  • Provides comprehensive type tests to ensure correct typing of the environment object

Reviewed Changes

Copilot reviewed 6 out of 6 changed files in this pull request and generated 1 comment.

File Description
packages/mongodb-rag-core/src/getEnv.ts Implements the new getEnv() function with required and optional environment variable support
packages/mongodb-rag-core/src/getEnv.test.ts Tests for validating the functional behavior of getEnv()
packages/mongodb-rag-core/src/getEnv.test-d.ts Type tests ensuring that the inferred types of environment variables are correct

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