Rename recmaint -> cmsmanage

This commit is contained in:
Adam Goldsmith 2022-01-27 16:05:12 -05:00
parent 91255cb06c
commit b956812e67
10 changed files with 10 additions and 10 deletions

2
.gitignore vendored
View File

@ -1,2 +1,2 @@
__pycache__ __pycache__
/recmaint/settings/prod.py /cmsmanage/settings/prod.py

View File

@ -1,5 +1,5 @@
""" """
ASGI config for recmaint project. ASGI config for cmsmanage 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``.
@ -11,6 +11,6 @@ import os
from django.core.asgi import get_asgi_application from django.core.asgi import get_asgi_application
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "recmaint.settings") os.environ.setdefault("DJANGO_SETTINGS_MODULE", "cmsmanage.settings")
application = get_asgi_application() application = get_asgi_application()

View File

@ -1,5 +1,5 @@
""" """
Django settings for recmaint project. Django settings for cmsmanage project.
Generated by 'django-admin startproject' using Django 3.1.3. Generated by 'django-admin startproject' using Django 3.1.3.
@ -46,7 +46,7 @@ MIDDLEWARE = [
"django.middleware.clickjacking.XFrameOptionsMiddleware", "django.middleware.clickjacking.XFrameOptionsMiddleware",
] ]
ROOT_URLCONF = "recmaint.urls" ROOT_URLCONF = "cmsmanage.urls"
TEMPLATES = [ TEMPLATES = [
{ {
@ -66,7 +66,7 @@ TEMPLATES = [
DEFAULT_AUTO_FIELD = "django.db.models.BigAutoField" DEFAULT_AUTO_FIELD = "django.db.models.BigAutoField"
WSGI_APPLICATION = "recmaint.wsgi.application" WSGI_APPLICATION = "cmsmanage.wsgi.application"
# Default URL to redirect to after authentication # Default URL to redirect to after authentication

View File

@ -1,4 +1,4 @@
"""recmaint URL Configuration """cmsmanage URL Configuration
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/3.1/topics/http/urls/ https://docs.djangoproject.com/en/3.1/topics/http/urls/

View File

@ -1,5 +1,5 @@
""" """
WSGI config for recmaint project. WSGI config for cmsmanage 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``.
@ -11,6 +11,6 @@ import os
from django.core.wsgi import get_wsgi_application from django.core.wsgi import get_wsgi_application
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "recmaint.settings") os.environ.setdefault("DJANGO_SETTINGS_MODULE", "cmsmanage.settings")
application = get_wsgi_application() application = get_wsgi_application()

View File

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