From e510dcb449ad591ce3c4fa2c15931d8a8a47ae17 Mon Sep 17 00:00:00 2001 From: Sander Date: Wed, 27 Mar 2024 22:43:13 +0100 Subject: [PATCH] document_importer does not directly support .zip archives --- docs/administration.md | 4 ++++ docs/development.md | 10 ++++++++++ 2 files changed, 14 insertions(+) diff --git a/docs/administration.md b/docs/administration.md index 827450127..1fa92cb7d 100644 --- a/docs/administration.md +++ b/docs/administration.md @@ -349,6 +349,10 @@ When you use the provided docker compose script, put the export inside the `export` folder in your paperless source directory. Specify `../export` as the `source`. +If you have zipped the data and manifest +with the [Document exporter](#exporter) using the `-z` or `--zip` option, please +extract the files inside the `export` folder first. + !!! note Importing from a previous version of Paperless may work, but for best diff --git a/docs/development.md b/docs/development.md index a87641ded..9efdc0b37 100644 --- a/docs/development.md +++ b/docs/development.md @@ -341,6 +341,16 @@ If you want to build the documentation locally, this is how you do it: ```bash $ pipenv install --dev ``` +You may need to install the follow extensions manually, if you find that mkdocs is complaining about missing modules, plugins or themes: + ```bash + $ pip install pymdown-extensions + ``` + ```bash + $ pip install mkdocs-material-extensions mkdocs-material + ``` + ```bash + $ pip install mkdocs-glightbox + ``` 2. Build the documentation