-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Labels
documentationImprovements or additions to documentationImprovements or additions to documentation
Description
Problem
docs/getting-started/configuration.md describes environment variables like CORS_ORIGINS, LOG_LEVEL, WORKERS, and other settings for configuring the application. However, the code does not read any environment variables — CORS origins, host, port, and all other settings are hardcoded in main.py.
This misleads users into thinking they can configure the app via environment variables when they actually cannot.
Suggested Fix
Either:
- Implement environment variable support using
pydantic-settings(which is already a dependency), or - Update the configuration docs to reflect the actual state of the code.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
documentationImprovements or additions to documentationImprovements or additions to documentation