ansible-nas/docs/applications/paperless_ng.md

24 lines
877 B
Markdown
Raw Normal View History

2022-01-08 18:34:13 +00:00
# Paperless-ng
2022-07-25 20:18:57 +00:00
Homepage: <https://github.com/jonaswinkler/paperless-ng>
2022-01-08 18:34:13 +00:00
Paperless is an application by Daniel Quinn and contributors that indexes your scanned documents and allows you to easily search for documents and store metadata alongside your documents.
Paperless-ng is a fork of the original project, adding a new interface and many other changes under the hood
## Usage
2022-06-19 08:30:35 +00:00
Set `paperless_ng_enabled: true` in your `inventories/<your_inventory>/nas.yml` file.
2022-01-08 18:34:13 +00:00
2022-07-25 20:18:57 +00:00
The paperless-ng web interface can be found at <http://ansible_nas_host_or_ip:16922>.
2022-01-08 18:34:13 +00:00
### Create the superuser
To be able to login, you will need a super user. To create it, execute the following command:
```bash
2022-01-28 23:54:39 +00:00
docker exec -it paperless_ng_uiserver python manage.py createsuperuser
2022-01-08 18:34:13 +00:00
```
2022-07-25 20:18:57 +00:00
This will prompt you to set a username, an optional e-mail address and finally a password (at least 8 characters).