From c2276ce7e16c2d90f99ba797dd1b93ec66b96f99 Mon Sep 17 00:00:00 2001 From: Benbb96 Date: Thu, 8 Oct 2020 22:05:48 +0200 Subject: [PATCH] Set an absolute path to get the module recognized when running from root folder --- demo/demodesk/config/settings.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/demo/demodesk/config/settings.py b/demo/demodesk/config/settings.py index 8d931242..1f50a463 100644 --- a/demo/demodesk/config/settings.py +++ b/demo/demodesk/config/settings.py @@ -56,7 +56,7 @@ MIDDLEWARE = [ 'django.middleware.clickjacking.XFrameOptionsMiddleware', ] -ROOT_URLCONF = 'demodesk.config.urls' +ROOT_URLCONF = 'demo.demodesk.config.urls' TEMPLATES = [ { @@ -75,7 +75,7 @@ TEMPLATES = [ }, ] -WSGI_APPLICATION = 'demodesk.config.wsgi.application' +WSGI_APPLICATION = 'demo.demodesk.config.wsgi.application' # django-helpdesk configuration settings