From f394400b2bfd9c13dee3210ce6ae557c0c0f5daa Mon Sep 17 00:00:00 2001 From: Marco Kamner Date: Fri, 17 Jan 2025 15:28:32 +0100 Subject: [PATCH] Feature: Support ISOLATED_DEPLOYMENT setting --- configuration/configuration.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/configuration/configuration.py b/configuration/configuration.py index 9691592..577c3f4 100644 --- a/configuration/configuration.py +++ b/configuration/configuration.py @@ -348,3 +348,5 @@ SESSION_FILE_PATH = environ.get('SESSION_FILE_PATH', environ.get('SESSIONS_ROOT' # Time zone (default: UTC) TIME_ZONE = environ.get('TIME_ZONE', 'UTC') +# If true disables miscellaneous functionality which depends on access to the Internet. +ISOLATED_DEPLOYMENT = _environ_get_and_map('ISOLATED_DEPLOYMENT', 'False', _AS_BOOL)