Ver Fonte

Rename the project gauth to review_automation

Mohidul Islam há 5 anos atrás
pai
commit
011448b6f6

+ 1 - 3
README.md

@@ -1,4 +1,2 @@
-# A boilerplate Django project with google authentication.
+# ER Care24 review automation.
 
-This project is develop for quickly getting started while need to work with google data.
-Setting up google authentication is always tedious. It help to start a project quickly with make some change and will work perfectly.

+ 0 - 16
goauth/asgi.py

@@ -1,16 +0,0 @@
-"""
-ASGI config for goauth project.
-
-It exposes the ASGI callable as a module-level variable named ``application``.
-
-For more information on this file, see
-https://docs.djangoproject.com/en/3.0/howto/deployment/asgi/
-"""
-
-import os
-
-from django.core.asgi import get_asgi_application
-
-os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'goauth.settings')
-
-application = get_asgi_application()

+ 0 - 16
goauth/wsgi.py

@@ -1,16 +0,0 @@
-"""
-WSGI config for goauth project.
-
-It exposes the WSGI callable as a module-level variable named ``application``.
-
-For more information on this file, see
-https://docs.djangoproject.com/en/3.0/howto/deployment/wsgi/
-"""
-
-import os
-
-from django.core.wsgi import get_wsgi_application
-
-os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'goauth.settings')
-
-application = get_wsgi_application()

+ 1 - 1
manage.py

@@ -5,7 +5,7 @@ import sys
 
 
 def main():
-    os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'goauth.settings')
+    os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'review_automation.settings')
     try:
         from django.core.management import execute_from_command_line
     except ImportError as exc:

+ 0 - 0
goauth/__init__.py → review_automation/__init__.py


+ 7 - 0
review_automation/asgi.py

@@ -0,0 +1,7 @@
+import os
+
+from django.core.asgi import get_asgi_application
+
+os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'review_automation.settings')
+
+application = get_asgi_application()

+ 2 - 2
goauth/settings.py → review_automation/settings.py

@@ -36,7 +36,7 @@ MIDDLEWARE = [
     'django.middleware.clickjacking.XFrameOptionsMiddleware',
 ]
 
-ROOT_URLCONF = 'goauth.urls'
+ROOT_URLCONF = 'review_automation.urls'
 
 TEMPLATES = [
     {
@@ -54,7 +54,7 @@ TEMPLATES = [
     },
 ]
 
-WSGI_APPLICATION = 'goauth.wsgi.application'
+WSGI_APPLICATION = 'review_automation.wsgi.application'
 
 
 # Database

+ 0 - 0
goauth/urls.py → review_automation/urls.py


+ 7 - 0
review_automation/wsgi.py

@@ -0,0 +1,7 @@
+import os
+
+from django.core.wsgi import get_wsgi_application
+
+os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'review_automation.settings')
+
+application = get_wsgi_application()