mirror of https://github.com/astral-sh/uv
generate more docs
Signed-off-by: Eli Uriegas <eliuriegas@meta.com>
This commit is contained in:
parent
a938c7adeb
commit
0daef692df
|
|
@ -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 }
|
### [`index`](#index) {: #index }
|
||||||
|
|
||||||
The package indexes to use when resolving dependencies.
|
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 }
|
### [`no-sources`](#no-sources) {: #no-sources }
|
||||||
|
|
||||||
Ignore the `tool.uv.sources` table when resolving dependencies. Used to lock against the
|
Ignore the `tool.uv.sources` table when resolving dependencies. Used to lock against the
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue