docs: document undocumented env vars in configuration overview#2360
Closed
nuthalapativarun wants to merge 1 commit into
Closed
docs: document undocumented env vars in configuration overview#2360nuthalapativarun wants to merge 1 commit into
nuthalapativarun wants to merge 1 commit into
Conversation
…CEMENTS, COUPLE_SESSION_WITH_COOKIE_NAME env vars Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Author
|
Following up on this docs PR — no activity yet after a week. Let me know if the documentation format/structure needs any tweaks, happy to iterate. |
Collaborator
|
Thanks for taking the time to open this. We're closing it as part of a batch of unsolicited, AI-generated PRs that were opened across many repositories at once, which we don't have the bandwidth to review and vet individually. If there's a specific issue you'd like to work on, please comment on that issue first so we can coordinate scope before any PR is opened. We're happy to engage with focused, individually-motivated contributions. Closing for now, no hard feelings. |
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.
Problem / Summary
Several environment variables present in
.envare not documented indocs/source/configuration/overview.md, making self-hosting harder:USE_USER_TOKEN,AUTOMATIC_LOGIN,COUPLE_SESSION_WITH_COOKIE_NAME, andPUBLIC_FEATURE_ANNOUNCEMENTS.Solution / Changes
## Feature FlagsdocumentingPUBLIC_FEATURE_ANNOUNCEMENTS, including the JSON5 array format andmaxDatesemantics.## User Authenticationdocumenting:AUTOMATIC_LOGIN— forces OAuth redirect on every unauthenticated requestUSE_USER_TOKEN— forwards the logged-in user's OAuth token to the inference endpoint instead ofOPENAI_API_KEYCOUPLE_SESSION_WITH_COOKIE_NAME— ties Chat UI sessions to an external auth cookie so sessions are invalidated on external auth changesoverview.mdwith Prettier (the file was already failing the formatter check before this PR).REASONING_SUMMARYandTEXT_MIME_ALLOWLIST, which are covered by open PRs docs: document REASONING_SUMMARY env flag #2290 and feat: make TEXT_MIME_ALLOWLIST extendable via env var #2353 respectively.