Conditional codex_home dotenv#29959
Draft
canvrno-oai wants to merge 2 commits into
Draft
Conversation
b1bc29d to
62b7f8e
Compare
62b7f8e to
11e2f5e
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds conditional dotenv overlays under
CODEX_HOME. After loading the current.env, Codex discovers.env.*files in lexicographic order and applies each overlay when its TCP condition passes.Evaluation and environment mutation occur during single-threaded startup, before Codex creates its runtime, workers, sessions, or network clients.
Supported behavior
hostandport.from.not.# codex-env-unset.~or a case-insensitive final suffix ofbak,back,backup,bkp,old,orig,original,save,saved,disable,disabled,inactive,off,tmp,temp,swp,swo,example,sample,template, ordist.CODEX_*variables.Files without a
# codex-env-if:directive as their first non-empty line are ignored.Usage
Set variables when an endpoint is reachable:
Unset variables when the endpoint is unreachable:
Each overlay is evaluated independently. A full Codex restart is required after changing overlays or moving between networks.
The timeout bounds TCP connection attempts but does not bound synchronous DNS resolution.
Testing
just test -p codex-arg0For manual validation:
CODEX_*variables remain unchanged.Future ideas:
all,any, and arbitrarily nestednot.