Workaround for Django errors attempting to install 2 apps with same name (ex: bulbs.videos and starwipe.apps.videos). Projects can choose to explicitly include these AppConfigs with namespaced labels.
Note: I did not make these defaults (default_app_config = 'bulbs.videos.apps.AppConfig') to avoid breaking existing integrations). Integrations must explicitly use .app.AppConfig as needed.
Coverage decreased (-1.1%) to 84.739% when pulling e50adb378b90f824561347f6dd288772c2a680b4 on app-configs into b8680d52d6cf8722e6a52fca46acd9c2baf869df on master.
Coverage decreased (-1.1%) to 84.739% when pulling e16fd3a264091b901aa2213ec3f414ed4937ae71 on app-configs into b8680d52d6cf8722e6a52fca46acd9c2baf869df on master.
Workaround for Django errors attempting to install 2 apps with same name (ex:
bulbs.videos
andstarwipe.apps.videos
). Projects can choose to explicitly include these AppConfigs with namespaced labels.And then refer to the app as
bulbs_videos
.Note: I did not make these defaults (
default_app_config = 'bulbs.videos.apps.AppConfig'
) to avoid breaking existing integrations). Integrations must explicitly use.app.AppConfig
as needed.