diff --git a/.env.tpl b/.env.tpl index 9e067f09..07db6275 100644 --- a/.env.tpl +++ b/.env.tpl @@ -168,3 +168,11 @@ NOPAQUE_SOCKETIO_MESSAGE_QUEUE_URI= # DEFAULT: 0 # Number of values to trust for X-Forwarded-Proto # NOPAQUE_PROXY_FIX_X_PROTO= + +# CHOOSE ONE: False, True +# DEFAULT: False +# NOPAQUE_TRANSKRIBUS_ENABLED= + +# READ-COOP account data: https://readcoop.eu/ +# NOPAQUE_READCOOP_USERNAME= +# NOPAQUE_READCOOP_PASSWORD= \ No newline at end of file diff --git a/.gitignore b/.gitignore index 61a99e04..76c4e06b 100644 --- a/.gitignore +++ b/.gitignore @@ -18,7 +18,8 @@ data/** pip-log.txt # Logs in log folder -logs/*.log +logs/* +!logs/dummy # Packages *.egg diff --git a/Dockerfile b/Dockerfile index c327703f..6ec450b5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ -FROM python:3.9.8-slim-buster +FROM python:3.8.13-slim-buster -LABEL authors="Patrick Jentsch
The roadmap guides you through nopaque's workflow! If you have the necessary input fie formats, you can directly jump into the corresponding process. If not, you can use the roadmap to jump right to the preceding process.
File setup
+File setup
Digital copies of text based research data (books, letters, etc.) often comprise various files and formats. nopaque converts and merges those files to facilitate further processing.
- Create Job + Create JobOptical Character Recognition
+Optical Character Recognition
nopaque converts your image data – like photos or scans – into text data through a process called OCR. This step enables you to proceed with further computational analysis of your documents.
- Create Job + Create JobNatural Language Processing
+Natural Language Processing
By means of computational linguistic data processing (tokenization, lemmatization, part-of-speech tagging and named-entity recognition) nopaque extracts additional information from your text.
- Create Job + Create JobOur source code is spread over multiple Git repositories.
File setup
+File setup
Digital copies of text based research data (books, letters, etc.) often comprise various files and formats. nopaque converts and merges those files to facilitate further processing and the application of other services.
Optical Character Recognition
+Optical Character Recognition
nopaque converts your image data – like photos or scans – into text data through OCR making it machine readable. This step enables you to proceed with further computational analysis of your documents.
Natural Language Processing
+Natural Language Processing
By means of computational linguistic data processing (tokenization, lemmatization, part-of-speech tagging and named-entity recognition) nopaque extracts additional information from your text.