move folder

This commit is contained in:
daniel
2024-10-27 22:24:45 +01:00
parent a863272c7e
commit 93738b046f
7 changed files with 8 additions and 8 deletions

View File

@@ -1,5 +1,5 @@
"""
ASGI config for simple project.
ASGI config for example project.
It exposes the ASGI callable as a module-level variable named ``application``.
@@ -11,6 +11,6 @@ import os
from django.core.asgi import get_asgi_application
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'simple.settings')
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'example.settings')
application = get_asgi_application()

View File

@@ -1,5 +1,5 @@
"""
Django settings for simple project.
Django settings for example project.
Generated by 'django-admin startproject' using Django 5.1.2.
@@ -50,7 +50,7 @@ MIDDLEWARE = [
'django_signposting.middleware.SignpostingMiddleware',
]
ROOT_URLCONF = 'simple.urls'
ROOT_URLCONF = 'example.urls'
TEMPLATES = [
{
@@ -68,7 +68,7 @@ TEMPLATES = [
},
]
WSGI_APPLICATION = 'simple.wsgi.application'
WSGI_APPLICATION = 'example.wsgi.application'
# Database

View File

@@ -1,5 +1,5 @@
"""
WSGI config for simple project.
WSGI config for example project.
It exposes the WSGI callable as a module-level variable named ``application``.
@@ -11,6 +11,6 @@ import os
from django.core.wsgi import get_wsgi_application
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'simple.settings')
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'example.settings')
application = get_wsgi_application()

View File

@@ -6,7 +6,7 @@ import sys
def main():
"""Run administrative tasks."""
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'simple.settings')
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'example.settings')
try:
from django.core.management import execute_from_command_line
except ImportError as exc: