Linked core into project.

main
Calum Andrew Morrell 2025-11-09 12:41:17 +00:00
parent 2ab513b7b2
commit 9a8d9f9c60
2 changed files with 3 additions and 0 deletions

View File

@ -43,6 +43,7 @@ INSTALLED_APPS = [
"django.contrib.sessions",
"django.contrib.messages",
"django.contrib.staticfiles",
"core",
]
MIDDLEWARE = [
@ -130,6 +131,7 @@ STATIC_ROOT = BASE_DIR / "static"
# User model and authentication
AUTH_USER_MODEL = "accounts.User"
LOGOUT_REDIRECT_URL = "core:homepage"
# Default primary key field type

View File

@ -20,5 +20,6 @@ from django.urls import include, path
urlpatterns = [
path("admin/", admin.site.urls),
path("", include("core.urls", namespace="core")),
path("accounts/", include("accounts.urls")),
]