DEBUG = TRUE and you have "no urls configured." Yet, my URLs are configured and it displays standard DJANGO success page

SETTINGS.PY:

INSTALLED_APPS = [
  'django.contrib.admin',
  'django.contrib.auth',
  'django.contrib.contenttypes',
  'django.contrib.sessions',
  'django.contrib.messages',
  'django.contrib.staticfiles',

  'application.apps.ApplicationConfig', #already tried 'application',
[

URLs.py/src:

from django.contrib import admin
from django.urls import path, include
from application import views

urlpatterns = [
  path('admin/', admin.site.urls),
  path('', include('application.urls')),
  path('home/', views.signIn),
]

URLs.py/application:

from django.urls import path
from . import views

urlpatterns = [
  path('', views.landing, name='landing'),
  path('create-account', views.createAccount, name='create-account'),
  path('forgot-password', views.forgotPassword, name='forgot-password'),
  path('home', views.signIn, name='home'),
]

Are my URLs configured? I do not know why it is saying they have not been configured appropriately.

I would appreciate any help

use this standard structure

-env
-src
  -application
    -migrations
    -static
    -templates
    -__init__.py
    -urls.py
    -views.py
    -.....py
  -src
    -__init__.py
    -settings.py
    -urls.py
    -wsgi.py
manage.py
Back to Top