Remove pycache and sqlite from version control

This commit is contained in:
2026-06-12 11:06:00 +02:00
41 changed files with 485 additions and 1 deletions
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
+3 -1
View File
@@ -15,10 +15,12 @@ Including another URLconf
2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
"""
from django.contrib import admin
from django.urls import path
from django.urls import path, include
from django.conf import settings
from django.conf.urls.static import static
urlpatterns = [
path('admin/', admin.site.urls),
path('', include('mensa_app.urls')), # Schaltet die App-URLs frei
] + static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)