create basic django app serving the Gähsnitz website

This commit is contained in:
2022-05-20 22:32:32 +02:00
commit 3b38c9fdec
18 changed files with 286 additions and 0 deletions

5
gaehsnitzproject/urls.py Normal file
View File

@@ -0,0 +1,5 @@
from django.urls import path, include
urlpatterns = [
path("", include(("gaehsnitz.urls", "gaehsnitz"))),
]