in my django project structure, i want all my django apps in a separate Apps Folder, but when i include it in settings.py it raises an error,
raise ImproperlyConfigured( django.core.exceptions.ImproperlyConfigured: Cannot import 'TestApp'. Check that 'Apps.TestApp.apps.TestappConfig.name' is correct.
INSTALLED_APPS = [ ... 'Apps.TestApp' ] But
when i only include TestApp, i raises no module named 'TestApp' Error.
INSTALLED_APPS = [ ... 'TestApp' ]