From e6b75c8046f8e791cc30d637b9caa317ad23f7cb Mon Sep 17 00:00:00 2001 From: bronsen <kontakt+gitcommit@nrrd.de> Date: Wed, 12 Mar 2025 17:33:04 +0100 Subject: [PATCH] [config] make sure django finds itself in our config folder --- config/asgi.py | 2 +- config/settings.py | 6 +++--- config/urls.py | 2 +- config/wsgi.py | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/config/asgi.py b/config/asgi.py index 2559c43..5469053 100644 --- a/config/asgi.py +++ b/config/asgi.py @@ -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``. diff --git a/config/settings.py b/config/settings.py index f1ba30e..717b95b 100644 --- a/config/settings.py +++ b/config/settings.py @@ -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. @@ -49,7 +49,7 @@ MIDDLEWARE = [ "django.middleware.clickjacking.XFrameOptionsMiddleware", ] -ROOT_URLCONF = "teilchensammler_project.urls" +ROOT_URLCONF = "config.urls" TEMPLATES = [ { @@ -67,7 +67,7 @@ TEMPLATES = [ }, ] -WSGI_APPLICATION = "teilchensammler_project.wsgi.application" +WSGI_APPLICATION = "config.wsgi.application" # Database diff --git a/config/urls.py b/config/urls.py index 2dc25bf..1b9db2b 100644 --- a/config/urls.py +++ b/config/urls.py @@ -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: https://docs.djangoproject.com/en/5.1/topics/http/urls/ diff --git a/config/wsgi.py b/config/wsgi.py index 4dc799b..550c7dd 100644 --- a/config/wsgi.py +++ b/config/wsgi.py @@ -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``.