Paperless Ng - Cloudbox/Community GitHub Wiki
Paperless-Ng
User Creation
Your Cloudbox username and password are set up in paperless by default. Only do the following if you want additional users
To add a user run the command: docker exec -it paperless-ng python manage.py createsuperuser
and follow the prompts.
Ensure the consume directory is not deleted
Your cloudplow settings may delete empty directories. If this is the case, you will need to exclude the consume directory from cloduplow.
To do this:
-
cd /opt/cloudplow
-
nano config.json
-
Find rclone_excludes and add
"Documents/paperless/consume/**"
(Ensure json is formatted correctly. Remember to add comma to line above if extending the list.For example, after editing this section may look something like this:
"rclone_excludes": [ "**partial~", "**_HIDDEN~", ".unionfs/**", ".unionfs-fuse/**", "**.fuse_hidden**", "Documents/paperless/consume/**" ],
If you have multiple remote/uploader pairs you may need to do this for all of them.
-
Ctrl X, Y to save
-
sudo systemctl restart cloudplow