mirror of
https://git.kotyczka.ch/developers/django.git
synced 2025-04-06 07:45:08 +02:00
init django app
This commit is contained in:
parent
56b3649aef
commit
dd53f500bc
@ -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 ?
|
||||
|
||||
|
BIN
demo/banking/__pycache__/admin.cpython-311.pyc
Normal file
BIN
demo/banking/__pycache__/admin.cpython-311.pyc
Normal file
Binary file not shown.
BIN
demo/banking/__pycache__/apps.cpython-311.pyc
Normal file
BIN
demo/banking/__pycache__/apps.cpython-311.pyc
Normal file
Binary file not shown.
BIN
demo/banking/__pycache__/models.cpython-311.pyc
Normal file
BIN
demo/banking/__pycache__/models.cpython-311.pyc
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
demo/banking/migrations/__pycache__/__init__.cpython-311.pyc
Normal file
BIN
demo/banking/migrations/__pycache__/__init__.cpython-311.pyc
Normal file
Binary file not shown.
1
demo/banking/templates/migration.html
Normal file
1
demo/banking/templates/migration.html
Normal file
@ -0,0 +1 @@
|
||||
<h1>Migration Apis</h1>
|
@ -3,4 +3,5 @@ from . import views
|
||||
|
||||
urlpatterns = [
|
||||
path("", views.index, name= "index"),
|
||||
path("", views.migration_home, name= "migration"),
|
||||
]
|
@ -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')
|
||||
|
||||
|
||||
|
||||
|
BIN
demo/db.sqlite3
BIN
demo/db.sqlite3
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -37,6 +37,7 @@ INSTALLED_APPS = [
|
||||
'django.contrib.sessions',
|
||||
'django.contrib.messages',
|
||||
'django.contrib.staticfiles',
|
||||
'banking'
|
||||
]
|
||||
|
||||
MIDDLEWARE = [
|
||||
|
@ -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)
|
||||
,
|
||||
]
|
||||
|
Loading…
x
Reference in New Issue
Block a user