diff --git a/paperless.conf.example b/paperless.conf.example index 53dc33362..27f826462 100755 --- a/paperless.conf.example +++ b/paperless.conf.example @@ -3,6 +3,16 @@ # As this file contains passwords it should only be readable by the user # running paperless. +############################################################################### +#### Database Settings #### +############################################################################### + +# By default, sqlite is used as the database backend. This can be changed here. +#PAPERLESS_DBENGINE="django.db.backends.postgresql_psycopg2" +#PAPERLESS_DBNAME="paperless" +#PAPERLESS_DBUSER="paperless" +#PAPERLESS_DBPASS="paperless" + ############################################################################### #### Paths & Folders #### diff --git a/src/documents/checks.py b/src/documents/checks.py old mode 100644 new mode 100755 index c80b63863..3310b1806 --- a/src/documents/checks.py +++ b/src/documents/checks.py @@ -2,7 +2,7 @@ import textwrap from django.conf import settings from django.core.checks import Error, register -from django.db.utils import OperationalError +from django.db.utils import OperationalError, ProgrammingError @register() @@ -14,7 +14,7 @@ def changed_password_check(app_configs, **kwargs): try: encrypted_doc = Document.objects.filter( storage_type=Document.STORAGE_TYPE_GPG).first() - except OperationalError: + except (OperationalError, ProgrammingError): return [] # No documents table yet if encrypted_doc: diff --git a/src/paperless/settings.py b/src/paperless/settings.py index b205dffd3..d18af3566 100755 --- a/src/paperless/settings.py +++ b/src/paperless/settings.py @@ -135,9 +135,9 @@ DATABASES = { } } -if os.getenv("PAPERLESS_DBUSER") and os.getenv("PAPERLESS_DBPASS"): +if os.getenv("PAPERLESS_DBENGINE"): DATABASES["default"] = { - "ENGINE": "django.db.backends.postgresql_psycopg2", + "ENGINE": os.getenv("PAPERLESS_DBENGINE"), "NAME": os.getenv("PAPERLESS_DBNAME", "paperless"), "USER": os.getenv("PAPERLESS_DBUSER"), "PASSWORD": os.getenv("PAPERLESS_DBPASS")