feat(django): failure django is not faster than base python, but is WAAAAAYYY EASIER to code in endpoints, and can work with nginx

This commit is contained in:
darkicewolf50
2024-11-26 21:19:53 +00:00
parent 8f59972e19
commit 0c60ffc5ed
28 changed files with 112 additions and 5 deletions

View File

@ -17,8 +17,12 @@ Including another URLconf
from django.contrib import admin
from django.urls import include, path
from . import newtest, getAppointments, selectAppointment
urlpatterns = [
path("polls/", include("polls.urls")),
path("admin/", admin.site.urls),
path("test", newtest.index, name="index"),
path("getSchedule", getAppointments.index, name="index"),
path("postSelectAppointment", selectAppointment.index, name="index"),
]