Merge pull request #1377 from ProfessorLogout/develop

Feature: Support ISOLATED_DEPLOYMENT setting
This commit is contained in:
Tobias Genannt 2025-01-17 19:36:25 +01:00 committed by GitHub
commit d129ade861
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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)