I add additional settings in settings.py when I test token and keycloak as described Keycloak β Pulp Project 3.48.0 documentation.
What I did:
- run a container basic, get the defaults conf about
INSTALLED_APPS AUTHENTICATION_BACKENDS TEMPLATES
, bydyconf list
, then - add these additional lines
For exemple: the part about INSTALLED_APPS
becomes:
INSTALLED_APPS = [
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
'django.contrib.postgres',
'import_export',
'django_filters',
'django_guid',
'drf_spectacular',
'rest_framework',
'pulpcore.app',
'pulp_ansible.app.PulpAnsiblePluginAppConfig',
'pulp_certguard.app.PulpCertGuardPluginAppConfig',
'pulp_container.app.PulpContainerPluginAppConfig',
'pulp_deb.app.PulpDebPluginAppConfig',
'pulp_gem.app.PulpGemPluginAppConfig',
'pulp_maven.app.PulpMavenPluginAppConfig',
'pulp_ostree.app.PulpOstreePluginAppConfig',
'pulp_python.app.PulpPythonPluginAppConfig',
'pulp_rpm.app.PulpRpmPluginAppConfig',
'pulp_file.app.PulpFilePluginAppConfig',
'storages',
'django_readonly_field',
'social_django',
'rest_framework.authtoken'
]
My question is: if I just add
INSTALLED_APPS = [
'social_django',
]
in my settings , will it be deep merger with the default settings? or I have to put the complete list
in my settings.py?