[config] make sure django finds itself in our config folder

This commit is contained in:
bronsen 2025-03-12 17:33:04 +01:00
parent 89b4e7d650
commit e6b75c8046
4 changed files with 6 additions and 6 deletions

View file

@ -1,5 +1,5 @@
""" """
ASGI config for teilchensammler_project project. ASGI config for teilchensammler project.
It exposes the ASGI callable as a module-level variable named ``application``. It exposes the ASGI callable as a module-level variable named ``application``.

View file

@ -1,5 +1,5 @@
""" """
Django settings for teilchensammler_project project. Django settings for teilchensammler project.
Generated by 'django-admin startproject' using Django 5.1.7. Generated by 'django-admin startproject' using Django 5.1.7.
@ -49,7 +49,7 @@ MIDDLEWARE = [
"django.middleware.clickjacking.XFrameOptionsMiddleware", "django.middleware.clickjacking.XFrameOptionsMiddleware",
] ]
ROOT_URLCONF = "teilchensammler_project.urls" ROOT_URLCONF = "config.urls"
TEMPLATES = [ TEMPLATES = [
{ {
@ -67,7 +67,7 @@ TEMPLATES = [
}, },
] ]
WSGI_APPLICATION = "teilchensammler_project.wsgi.application" WSGI_APPLICATION = "config.wsgi.application"
# Database # Database

View file

@ -1,5 +1,5 @@
""" """
URL configuration for teilchensammler_project project. URL configuration for teilchensammler project.
The `urlpatterns` list routes URLs to views. For more information please see: The `urlpatterns` list routes URLs to views. For more information please see:
https://docs.djangoproject.com/en/5.1/topics/http/urls/ https://docs.djangoproject.com/en/5.1/topics/http/urls/

View file

@ -1,5 +1,5 @@
""" """
WSGI config for teilchensammler_project project. WSGI config for teilchensammler project.
It exposes the WSGI callable as a module-level variable named ``application``. It exposes the WSGI callable as a module-level variable named ``application``.