diff --git a/TechBlog/__init__.py b/BH/__init__.py similarity index 100% rename from TechBlog/__init__.py rename to BH/__init__.py diff --git a/TechBlog/__pycache__/__init__.cpython-310.pyc b/BH/__pycache__/__init__.cpython-310.pyc similarity index 100% rename from TechBlog/__pycache__/__init__.cpython-310.pyc rename to BH/__pycache__/__init__.cpython-310.pyc diff --git a/TechBlog/__pycache__/settings.cpython-310.pyc b/BH/__pycache__/settings.cpython-310.pyc similarity index 82% rename from TechBlog/__pycache__/settings.cpython-310.pyc rename to BH/__pycache__/settings.cpython-310.pyc index 84ab170..cd86255 100644 Binary files a/TechBlog/__pycache__/settings.cpython-310.pyc and b/BH/__pycache__/settings.cpython-310.pyc differ diff --git a/TechBlog/__pycache__/urls.cpython-310.pyc b/BH/__pycache__/urls.cpython-310.pyc similarity index 100% rename from TechBlog/__pycache__/urls.cpython-310.pyc rename to BH/__pycache__/urls.cpython-310.pyc diff --git a/TechBlog/__pycache__/wsgi.cpython-310.pyc b/BH/__pycache__/wsgi.cpython-310.pyc similarity index 54% rename from TechBlog/__pycache__/wsgi.cpython-310.pyc rename to BH/__pycache__/wsgi.cpython-310.pyc index 98c1c20..fe77a46 100644 Binary files a/TechBlog/__pycache__/wsgi.cpython-310.pyc and b/BH/__pycache__/wsgi.cpython-310.pyc differ diff --git a/TechBlog/asgi.py b/BH/asgi.py similarity index 73% rename from TechBlog/asgi.py rename to BH/asgi.py index ec88826..d9899e4 100644 --- a/TechBlog/asgi.py +++ b/BH/asgi.py @@ -1,5 +1,5 @@ """ -ASGI config for TechBlog project. +ASGI config for BH 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', 'TechBlog.settings') +os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'BH.settings') application = get_asgi_application() diff --git a/TechBlog/settings.py b/BH/settings.py similarity index 97% rename from TechBlog/settings.py rename to BH/settings.py index e217d25..6370527 100644 --- a/TechBlog/settings.py +++ b/BH/settings.py @@ -53,7 +53,7 @@ MIDDLEWARE = [ 'django.middleware.clickjacking.XFrameOptionsMiddleware', ] -ROOT_URLCONF = 'TechBlog.urls' +ROOT_URLCONF = 'BH.urls' TEMPLATES = [ { @@ -71,7 +71,7 @@ TEMPLATES = [ }, ] -WSGI_APPLICATION = 'TechBlog.wsgi.application' +WSGI_APPLICATION = 'BH.wsgi.application' # Database diff --git a/TechBlog/urls.py b/BH/urls.py similarity index 100% rename from TechBlog/urls.py rename to BH/urls.py diff --git a/TechBlog/wsgi.py b/BH/wsgi.py similarity index 73% rename from TechBlog/wsgi.py rename to BH/wsgi.py index ec26ac9..23fd112 100644 --- a/TechBlog/wsgi.py +++ b/BH/wsgi.py @@ -1,5 +1,5 @@ """ -WSGI config for TechBlog project. +WSGI config for BH 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', 'TechBlog.settings') +os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'BH.settings') application = get_wsgi_application() diff --git a/manage.py b/manage.py index 869a0a8..96a91d5 100644 --- a/manage.py +++ b/manage.py @@ -5,7 +5,7 @@ import sys def main(): - os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'TechBlog.settings') + os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'BH.settings') try: from django.core.management import execute_from_command_line except ImportError as exc: