Create a new app:
python3 manage.py startapp demoapp
edit the views.py
:
from django.http import HttpResponse
def index(request):
return HttpResponse("Hellow from the demo view app")
create urls.py
file in the demoapp
directory:
from django.urls import path
from . import views
urlpattern = [
path('', views.index, name='index')
]
update the urls.py
in the demoproject
:
from django.contrib import admin
from django.urls import path, include
urlpatterns = [
path('admin/', admin.site.urls),
path('demoapp/', include('demoapp.urls'))
]
update the settings.py
file:
INSTALLED_APPS = [
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
'demoapp',
]
after performing these the new folder structure will be the following one:
.
âââ db.sqlite3
âââ demoapp
â  âââ __init__.py
â  âââ __pycache__
â  â  âââ __init__.cpython-312.pyc
â  â  âââ admin.cpython-312.pyc
â  â  âââ apps.cpython-312.pyc
â  â  âââ models.cpython-312.pyc
â  â  âââ urls.cpython-312.pyc
â  â  âââ views.cpython-312.pyc
â  âââ admin.py
â  âââ apps.py
â  âââ migrations
â  â  âââ __init__.py
â  â  âââ __pycache__
â  â  âââ __init__.cpython-312.pyc
â  âââ models.py
â  âââ tests.py
â  âââ urls.py
â  âââ views.py
âââ demoproject
â  âââ __init__.py
â  âââ __pycache__
â  â  âââ __init__.cpython-311.pyc
â  â  âââ __init__.cpython-312.pyc
â  â  âââ settings.cpython-311.pyc
â  â  âââ settings.cpython-312.pyc
â  â  âââ urls.cpython-311.pyc
â  â  âââ urls.cpython-312.pyc
â  â  âââ wsgi.cpython-311.pyc
â  â  âââ wsgi.cpython-312.pyc
â  âââ asgi.py
â  âââ settings.py
â  âââ urls.py
â  âââ wsgi.py
âââ manage.py
7 directories, 30 files
and visiting the following demo app url we shall se the response from the views.py
: http://localhost:8000/demo/