A Django file editor app for Janeway.
Install directly from the Open Library of Humanities GitHub repository:
pip install git+https://github.com/openlibhums/file_editor.gitThen add it to your Django project's INSTALLED_APPS:
INSTALLED_APPS = [
# ...
"file_editor",
]Finally, include the app's URLs in src/core/include_urls.py:
path("file-editor/", include("file_editor.urls")),