1
0
Fork 0

lint(docs): put env vars in a list

This commit is contained in:
Sean Sube 2023-04-21 23:04:50 -05:00
parent e89f2fc4d0
commit d9884b5fef
Signed by: ssube
GPG Key ID: 3EED7B957D362AF1
2 changed files with 31 additions and 85 deletions

View File

@ -888,7 +888,7 @@ some common configurations in a server context.
- array of sources - array of sources
- strings - strings
- additional translation strings - additional translation strings
## Environment variables ## Environment variables
This section catalogs the environment variables that can be set in the launch script. These variables can be set in the server launch scripts as This section catalogs the environment variables that can be set in the launch script. These variables can be set in the server launch scripts as
@ -901,91 +901,36 @@ This section catalogs the environment variables that can be set in the launch sc
> set [ENVIRONMENT VARIABLE NAME]=[VALUE] > set [ENVIRONMENT VARIABLE NAME]=[VALUE]
``` ```
The available environment variables are as follows: The following environment variables are available:
```shell - `ONNX_WEB_MODEL_PATH`
ONNX_WEB_MODEL_PATH - The path to the models folder. Defaults to /models
``` - `ONNX_WEB_EXTRA_MODELS`
- The path to the extra models json file. See [the Adding your own models section](#adding-your-own-models) for more information. Defaults to nothing.
The path to the models folder. Defaults to /models - `ONNX_WEB_OUTPUT_PATH`
- The path to the model output folder (for generated images). Defaults to /outputs
```shell - `ONNX_WEB_PARAMS_PATH`
ONNX_WEB_EXTRA_MODELS - The path to the params.json file that holds the model parameters currently in use. Defaults to /api. Not accessible by default in the Windows bundle; use the web interface or set another path.
``` - `ONNX_WEB_CORS_ORIGIN`
- The allowed origins for [cross-origin resource sharing](https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS) headers. Allows access from other websites or clients.
The path to the extra models json file. See [the Adding your own models section](#Adding your own models) for more information. Defaults to nothing. - `ONNX_WEB_ANY_PLATFORM`
- The platform that will be used when selecting any platform in the client.
```shell - `ONNX_WEB_BLOCK_PLATFORMS`
ONNX_WEB_OUTPUT_PATH - Platforms that should not be shown in the client. Can be used to disable CPU mode and only run on your GPU.
``` - `ONNX_WEB_DEFAULT_PLATFORM`
- The default platform that will be selected in the client, if you have more than one GPU or have CPU mode enabled.
The path to the model output folder (for generated images). Defaults to /outputs - `ONNX_WEB_IMAGE_FORMAT`
- The image format for the output. Defaults to .png.
```shell - `ONNX_WEB_CACHE_MODELS`
ONNX_WEB_PARAMS_PATH - The number of models to cache. Decreasing this value may decrease VRAM usage and increase stability when switching models, but may also increase startup time. Defaults to 5.
``` - `ONNX_WEB_SHOW_PROGRESS`
- Whether to show progress in the command prompt window. Defaults to True.
The path to the params.json file that holds the model parameters currently in use. Defaults to /api. Not accessible by default in the Windows bundle; use the web interface or set another path. - `ONNX_WEB_OPTIMIZATIONS`
- See [the Optimizing models for lower memory usage section](#optimizing-models-for-lower-memory-usage) for more information.
```shell - `ONNX_WEB_JOB_LIMIT`
ONNX_WEB_CORS_ORIGIN - Job limit before workers will be automatically restarted. Defaults to 10.
``` - `ONNX_WEB_MEMORY_LIMIT`
- VRAM usage limit for CUDA devices. Defaults to none.
TODO
```shell
ONNX_WEB_ANY_PLATFORM
```
TODO
```shell
ONNX_WEB_BLOCK_PLATFORMS
```
TODO
```shell
ONNX_WEB_DEFAULT_PLATFORM
```
TODO
```shell
ONNX_WEB_IMAGE_FORMAT
```
The image format for the output. Defaults to .png.
```shell
ONNX_WEB_CACHE_MODELS
```
The number of models to cache. Decreasing this value may decrease VRAM usage and increase stability when switching models, but may also increase startup time. Defaults to 5.
```shell
ONNX_WEB_SHOW_PROGRESS
```
Whether to show progress in the Web UI. Defaults to True.
```shell
ONNX_WEB_OPTIMIZATIONS
```
See [the Optimizing models for lower memory usage section](#Optimizing models for lower memory usage) for more information.
```shell
ONNX_WEB_JOB_LIMIT
```
Job limit. Defaults to 10.
```shell
ONNX_WEB_MEMORY_LIMIT
```
Memory usage limit. Defaults to none.
## Known errors ## Known errors

View File

@ -88,6 +88,7 @@
"upscaling", "upscaling",
"venv", "venv",
"virtualenv", "virtualenv",
"VRAM",
"zustand" "zustand"
] ]
} }