Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/bazarr/blame/commit/2ee008b57bdb8b00844c2401ae26f56efad135e1/libs/dynaconf/__init__.py
You should set ROOT_URL correctly, otherwise the web may not work correctly.
from __future__ import annotations
from dynaconf . base import LazySettings # noqa
from dynaconf . constants import DEFAULT_SETTINGS_FILES
from dynaconf . contrib import DjangoDynaconf # noqa
from dynaconf . contrib import FlaskDynaconf # noqa
from dynaconf . utils . inspect import get_history
from dynaconf . utils . inspect import inspect_settings
from dynaconf . utils . parse_conf import add_converter # noqa
from dynaconf . utils . parse_conf import DynaconfFormatError # noqa
from dynaconf . utils . parse_conf import DynaconfParseError # noqa
from dynaconf . validator import ValidationError # noqa
from dynaconf . validator import Validator # noqa
settings = LazySettings (
# This global `settings` is deprecated from v3.0.0+
# kept here for backwards compatibility
# To Be Removed in 4.0.x
warn_dynaconf_global_settings = True ,
environments = True ,
lowercase_read = False ,
load_dotenv = True ,
default_settings_paths = DEFAULT_SETTINGS_FILES ,
)
# This is the new recommended base class alias
Dynaconf = LazySettings # noqa
__all__ = [
" Dynaconf " ,
" LazySettings " ,
" Validator " ,
" FlaskDynaconf " ,
" ValidationError " ,
" DjangoDynaconf " ,
" add_converter " ,
" inspect_settings " ,
" get_history " ,
" DynaconfFormatError " ,
" DynaconfParseError " ,
]