init django app

This commit is contained in:
Peter Kotyczka 2024-02-02 10:18:27 +01:00
parent 56b3649aef
commit dd53f500bc
15 changed files with 11 additions and 1 deletions

View File

@ -2,6 +2,7 @@
https://duckduckgo.com/?q=django+tutorial&iax=videos&ia=videos&iai=https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3Dsm1mokevMWk
python3 -m venv env
python3 -m pip install django
-- Django calling Rest Services ?

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1 @@
<h1>Migration Apis</h1>

View File

@ -3,4 +3,5 @@ from . import views
urlpatterns = [
path("", views.index, name= "index"),
path("", views.migration_home, name= "migration"),
]

View File

@ -3,6 +3,9 @@ from django.http import HttpResponse
def index(response):
return HttpResponse("Welcome to siMed Migration")
def migration_home(request):
return render(request,'migration.html')

Binary file not shown.

View File

@ -37,6 +37,7 @@ INSTALLED_APPS = [
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
'banking'
]
MIDDLEWARE = [

View File

@ -16,8 +16,11 @@ Including another URLconf
"""
from django.contrib import admin
from django.urls import path,include
from banking.views import migration_home
urlpatterns = [
path('admin/', admin.site.urls),
path('home/', include("banking.urls")),
path('', include("banking.urls")),
path('migration/', migration_home)
,
]