Added apps.core in installed_apps in settings and changed the apps.core.apps CoreConfig.name to apps.core.

This commit is contained in:
Md. Akhter-Uz-Zaman 2024-02-02 07:57:30 +06:00 committed by GitHub
parent 44579eb6b0
commit 0f639f1058
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 1 deletions

View File

@ -3,4 +3,4 @@ from django.apps import AppConfig
class CoreConfig(AppConfig):
default_auto_field = "django.db.models.BigAutoField"
name = "core"
name = "apps.core"

View File

@ -36,6 +36,7 @@ INSTALLED_APPS = [
"django.contrib.sessions",
"django.contrib.messages",
"django.contrib.staticfiles",
"apps.core",
]
MIDDLEWARE = [