Limitations
Paching features have currently the following limitations:
settings.py
Only single file
settings.pyare currently supported. In case you are using splitted settings, the only way to usedjango-app-enableris to have at least an emptyINSTALLED_APPSlist in the settings file declared inDJANGO_SETTINGS_MODULE.Settings with literal or “simple” lists and dictionaries (like
CACHE,DATABASES,AUTH_PASSWORD_VALIDATORS) are supported, the most notable exception isTEMPLATESin which you cannot add / replace options in a single template engine. Any custom setting is supported.While extra requirements will be installed when including them in the package argument (as in
djangocms-blog[search]), they will not be added toINSTALLED_APPSand they must be added manually after command execution.
urls.py
Only single file
urls.pyare currently supported. In case you are using splitted settings, the only way to usedjango-app-enableris to have at least an emptyurlpatternslist in thesettings.ROOT_URLCONFfile.