diff options
| author | Mohamed Bassem <me@mbassem.com> | 2025-10-26 09:58:51 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-10-26 09:58:51 +0000 |
| commit | 6ea5dd194e7be62c1a51566f31808be076d3b139 (patch) | |
| tree | 3a7d207bfd78a4e18d9ef135c7b5fef1106a318f /docs | |
| parent | 046c29dcf1083f0ab89b080f7696e6d642a6bd17 (diff) | |
| download | karakeep-6ea5dd194e7be62c1a51566f31808be076d3b139.tar.zst | |
refactor: generalize tidy assets queue into admin maintenance (#2059)
* refactor: generalize admin maintenance queue
* more fixes
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/docs/03-configuration.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/docs/03-configuration.md b/docs/docs/03-configuration.md index d9e55322..a7682e72 100644 --- a/docs/docs/03-configuration.md +++ b/docs/docs/03-configuration.md @@ -7,7 +7,7 @@ The app is mainly configured by environment variables. All the used environment | PORT | No | 3000 | The port on which the web server will listen. DON'T CHANGE THIS IF YOU'RE USING DOCKER, instead changed the docker bound external port. | | WORKERS_PORT | No | 0 (Random Port) | The port on which the worker will export its prometheus metrics on `/metrics`. By default it's a random unused port. If you want to utilize those metrics, fix the port to a value (and export it in docker if you're using docker). | | WORKERS_HOST | No | 127.0.0.1 | Host to listen to for requests to WORKERS_PORT. You will need to set this if running in a container, since localhost will not be reachable from outside | -| WORKERS_ENABLED_WORKERS | No | Not set | Comma separated list of worker names to enable. If set, only these workers will run. Valid values: crawler,inference,search,tidyAssets,video,feed,assetPreprocessing,webhook,ruleEngine. | +| WORKERS_ENABLED_WORKERS | No | Not set | Comma separated list of worker names to enable. If set, only these workers will run. Valid values: crawler,inference,search,adminMaintenance,video,feed,assetPreprocessing,webhook,ruleEngine. | | WORKERS_DISABLED_WORKERS | No | Not set | Comma separated list of worker names to disable. Takes precedence over `WORKERS_ENABLED_WORKERS`. | | DATA_DIR | Yes | Not set | The path for the persistent data directory. This is where the db lives. Assets are stored here by default unless `ASSETS_DIR` is set. | | ASSETS_DIR | No | Not set | The path where crawled assets will be stored. If not set, defaults to `${DATA_DIR}/assets`. | |
