When developer_mode doesn't exist in elapi.yml, reinitiate_config is not run, from configuration/__init__py:
if get_development_mode() is False:
# <- get_development_mode() cannot be False when it doesn't exist before reinitiate_config is run
reinitiate_config(ignore_essential_validation=True)
When
developer_mode
doesn't exist inelapi.yml
,reinitiate_config
is not run, fromconfiguration/__init__py
: