diff --git a/docs/installation/config.rst b/docs/installation/config.rst index 7754f3ba..9d4b5801 100644 --- a/docs/installation/config.rst +++ b/docs/installation/config.rst @@ -90,12 +90,12 @@ Optional * ``NUM_PROXIES``: the number of reverse proxies in front of the application, as an integer. This is used to determine the actual client IP adres. On Kubernetes with an ingress you typically want to set this to 2. Defaults to: ``1``. * ``CSRF_TRUSTED_ORIGINS``: A list of trusted origins for unsafe requests (e.g. POST). Defaults to: ``[]``. * ``NOTIFICATIONS_DISABLED``: indicates whether or not notifications should be sent to the Notificaties API for operations on the API endpoints. Defaults to ``True`` for the ``dev`` environment, otherwise defaults to ``False``. +* ``SENTRY_DSN``: URL of the sentry project to send error reports to. Default empty, i.e. -> no monitoring set up. Highly recommended to configure this. * ``DISABLE_2FA``: Whether or not two factor authentication should be disabled. Defaults to: ``False``. * ``LOG_OUTGOING_REQUESTS_EMIT_BODY``: Whether or not outgoing request bodies should be logged. Defaults to: ``True``. * ``LOG_OUTGOING_REQUESTS_DB_SAVE``: Whether or not outgoing request logs should be saved to the database. Defaults to: ``False``. * ``LOG_OUTGOING_REQUESTS_DB_SAVE_BODY``: Whether or not outgoing request bodies should be saved to the database. Defaults to: ``True``. * ``LOG_OUTGOING_REQUESTS_MAX_AGE``: The amount of time after which request logs should be deleted from the database. Defaults to: ``7``. -* ``SENTRY_DSN``: URL of the sentry project to send error reports to. Default empty, i.e. -> no monitoring set up. Highly recommended to configure this. diff --git a/requirements/base.txt b/requirements/base.txt index 13e9725e..28ec796f 100644 --- a/requirements/base.txt +++ b/requirements/base.txt @@ -240,7 +240,7 @@ mozilla-django-oidc-db==0.22.0 # open-api-framework notifications-api-common==0.3.1 # via commonground-api-common -open-api-framework==0.9.2 +open-api-framework==0.9.3 # via -r requirements/base.in orderedmultidict==1.0.1 # via furl @@ -371,4 +371,3 @@ zgw-consumers==0.35.1 # via # commonground-api-common # notifications-api-common - # open-api-framework diff --git a/requirements/ci.txt b/requirements/ci.txt index 50390614..dfe22c37 100644 --- a/requirements/ci.txt +++ b/requirements/ci.txt @@ -507,7 +507,7 @@ notifications-api-common==0.3.1 # -c requirements/base.txt # -r requirements/base.txt # commonground-api-common -open-api-framework==0.9.2 +open-api-framework==0.9.3 # via # -c requirements/base.txt # -r requirements/base.txt @@ -837,4 +837,3 @@ zgw-consumers==0.35.1 # -r requirements/base.txt # commonground-api-common # notifications-api-common - # open-api-framework diff --git a/requirements/dev.txt b/requirements/dev.txt index edd748f0..3f49e5c4 100644 --- a/requirements/dev.txt +++ b/requirements/dev.txt @@ -582,7 +582,7 @@ notifications-api-common==0.3.1 # -c requirements/ci.txt # -r requirements/ci.txt # commonground-api-common -open-api-framework==0.9.2 +open-api-framework==0.9.3 # via # -c requirements/ci.txt # -r requirements/ci.txt @@ -1006,4 +1006,3 @@ zgw-consumers==0.35.1 # -r requirements/ci.txt # commonground-api-common # notifications-api-common - # open-api-framework diff --git a/src/openklant/conf/base.py b/src/openklant/conf/base.py index f58d3f4d..40b46361 100644 --- a/src/openklant/conf/base.py +++ b/src/openklant/conf/base.py @@ -3,8 +3,6 @@ from .api import * # noqa -init_sentry() - # # APPLICATIONS enabled for this project #