From 1ea0172b75208a5113152b656bd8c4175437d6ac Mon Sep 17 00:00:00 2001 From: CanbiZ <47820557+MickLesk@users.noreply.github.com> Date: Thu, 11 Dec 2025 10:57:05 +0100 Subject: [PATCH] paperless: add note on website (uv usage) (#9833) * paperless: add note on website (uv usage) Added information about using 'uv run' for Paperless-NGX commands. * switch branch to main to prevent conflicts --- frontend/public/json/paperless-ngx.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/frontend/public/json/paperless-ngx.json b/frontend/public/json/paperless-ngx.json index 554ec5abb1..3fe72afe52 100644 --- a/frontend/public/json/paperless-ngx.json +++ b/frontend/public/json/paperless-ngx.json @@ -39,6 +39,10 @@ { "text": "Script installs English as default OCR language. To install additional languages, use `apt-get install tesseract-ocr-[lang]`, where [lang] is the language code (e.g. `apt-get install tesseract-ocr-deu`).", "type": "info" + }, + { + "text": "Paperless-NGX use uv, so all calls need to start with `uv run` f.e. `uv run python3 manage.py document_exporter $path` instead `python3 manage.py`", + "type": "info" } ] }