From 6834c70baee677aae1bdcbcfaa68ee81622c8d53 Mon Sep 17 00:00:00 2001 From: Jo Vandeginste Date: Mon, 28 Dec 2020 22:19:30 +0100 Subject: [PATCH] Allow extending INSTALLED_APPS via environment This allows a user to add "apps" (aka parsers) through the environment. Especially useful when using Docker, and adding a test-parser. Usage: ```yaml services: webserver: environment: PAPERLESS_APPS: paperless_tika.apps.PaperlessTikaConfig ``` You can add more by separating them with a `,`: ```yaml PAPERLESS_APPS: app1,app2 ``` --- src/paperless/settings.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/paperless/settings.py b/src/paperless/settings.py index c6f7c9357..d7cae943b 100644 --- a/src/paperless/settings.py +++ b/src/paperless/settings.py @@ -69,6 +69,8 @@ SCRATCH_DIR = os.getenv("PAPERLESS_SCRATCH_DIR", "/tmp/paperless") # Application Definition # ############################################################################### +env_apps = os.getenv("PAPERLESS_APPS") if os.getenv("PAPERLESS_APPS") else [] + INSTALLED_APPS = [ "whitenoise.runserver_nostatic", @@ -95,7 +97,7 @@ INSTALLED_APPS = [ "django_q", -] +] + env_apps REST_FRAMEWORK = { 'DEFAULT_AUTHENTICATION_CLASSES': [