From 0daef692dfafda0c958c47918246b68357ffcd77 Mon Sep 17 00:00:00 2001 From: Eli Uriegas Date: Mon, 1 Dec 2025 15:03:52 -0800 Subject: [PATCH] generate more docs Signed-off-by: Eli Uriegas --- docs/reference/settings.md | 72 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 72 insertions(+) diff --git a/docs/reference/settings.md b/docs/reference/settings.md index db121b422..ca9b05e80 100644 --- a/docs/reference/settings.md +++ b/docs/reference/settings.md @@ -1316,6 +1316,54 @@ versions or platforms. --- +### [`http-proxy`](#http-proxy) {: #http-proxy } + +The URL of the HTTP proxy to use. + +**Default value**: `None` + +**Type**: `str` + +**Example usage**: + +=== "pyproject.toml" + + ```toml + [tool.uv] + http-proxy = "http://proxy.example.com" + ``` +=== "uv.toml" + + ```toml + http-proxy = "http://proxy.example.com" + ``` + +--- + +### [`https-proxy`](#https-proxy) {: #https-proxy } + +The URL of the HTTPS proxy to use. + +**Default value**: `None` + +**Type**: `str` + +**Example usage**: + +=== "pyproject.toml" + + ```toml + [tool.uv] + https-proxy = "https://proxy.example.com" + ``` +=== "uv.toml" + + ```toml + https-proxy = "https://proxy.example.com" + ``` + +--- + ### [`index`](#index) {: #index } The package indexes to use when resolving dependencies. @@ -1737,6 +1785,30 @@ those provided via `--find-links`. --- +### [`no-proxy`](#no-proxy) {: #no-proxy } + +A list of hosts to exclude from proxying. + +**Default value**: `None` + +**Type**: `list[str]` + +**Example usage**: + +=== "pyproject.toml" + + ```toml + [tool.uv] + no-proxy = ["localhost", "127.0.0.1"] + ``` +=== "uv.toml" + + ```toml + no-proxy = ["localhost", "127.0.0.1"] + ``` + +--- + ### [`no-sources`](#no-sources) {: #no-sources } Ignore the `tool.uv.sources` table when resolving dependencies. Used to lock against the