From 0f639f10585237cf75efdd981fab5ee29b4ba6ca Mon Sep 17 00:00:00 2001 From: "Md. Akhter-Uz-Zaman" Date: Fri, 2 Feb 2024 07:57:30 +0600 Subject: [PATCH] Added apps.core in installed_apps in settings and changed the apps.core.apps CoreConfig.name to apps.core. --- apps/core/apps.py | 2 +- config/settings.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/core/apps.py b/apps/core/apps.py index c0ce093..ab0051e 100644 --- a/apps/core/apps.py +++ b/apps/core/apps.py @@ -3,4 +3,4 @@ from django.apps import AppConfig class CoreConfig(AppConfig): default_auto_field = "django.db.models.BigAutoField" - name = "core" + name = "apps.core" diff --git a/config/settings.py b/config/settings.py index 398ed23..d5f061a 100644 --- a/config/settings.py +++ b/config/settings.py @@ -36,6 +36,7 @@ INSTALLED_APPS = [ "django.contrib.sessions", "django.contrib.messages", "django.contrib.staticfiles", + "apps.core", ] MIDDLEWARE = [