document_importer does not directly support .zip archives

This commit is contained in:
Sander
2024-03-27 22:43:13 +01:00
parent 1f355a22e0
commit e510dcb449
2 changed files with 14 additions and 0 deletions

View File

@@ -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 the `export` folder in your paperless source directory. Specify
`../export` as the `source`. `../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 !!! note
Importing from a previous version of Paperless may work, but for best Importing from a previous version of Paperless may work, but for best

View File

@@ -341,6 +341,16 @@ If you want to build the documentation locally, this is how you do it:
```bash ```bash
$ pipenv install --dev $ 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 2. Build the documentation