Skip to content

Commit 7fc7503

Browse files
committed
done
0 parents commit 7fc7503

36 files changed

+12699
-0
lines changed

DjangoAuth/__init__.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
import pymysql
2+
3+
pymysql.install_as_MySQLdb()
189 Bytes
Binary file not shown.
2.47 KB
Binary file not shown.
967 Bytes
Binary file not shown.
549 Bytes
Binary file not shown.

DjangoAuth/asgi.py

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
"""
2+
ASGI config for DjangoAuth project.
3+
4+
It exposes the ASGI callable as a module-level variable named ``application``.
5+
6+
For more information on this file, see
7+
https://docs.djangoproject.com/en/3.1/howto/deployment/asgi/
8+
"""
9+
10+
import os
11+
12+
from django.core.asgi import get_asgi_application
13+
14+
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'DjangoAuth.settings')
15+
16+
application = get_asgi_application()

DjangoAuth/settings.py

Lines changed: 141 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,141 @@
1+
"""
2+
Django settings for DjangoAuth project.
3+
4+
Generated by 'django-admin startproject' using Django 3.1.7.
5+
6+
For more information on this file, see
7+
https://docs.djangoproject.com/en/3.1/topics/settings/
8+
9+
For the full list of settings and their values, see
10+
https://docs.djangoproject.com/en/3.1/ref/settings/
11+
"""
12+
13+
from pathlib import Path
14+
15+
16+
# Build paths inside the project like this: BASE_DIR / 'subdir'.
17+
BASE_DIR = Path(__file__).resolve().parent.parent
18+
19+
20+
# Quick-start development settings - unsuitable for production
21+
# See https://docs.djangoproject.com/en/3.1/howto/deployment/checklist/
22+
23+
# SECURITY WARNING: keep the secret key used in production secret!
24+
SECRET_KEY = 'q7+r60u+xcoido$$wr(9%2$+v-fc7=i8!+-e^7s(=$970f(m#i'
25+
26+
# SECURITY WARNING: don't run with debug turned on in production!
27+
DEBUG = True
28+
29+
ALLOWED_HOSTS = []
30+
31+
32+
# Application definition
33+
34+
INSTALLED_APPS = [
35+
'django.contrib.admin',
36+
'django.contrib.auth',
37+
'django.contrib.contenttypes',
38+
'django.contrib.sessions',
39+
'django.contrib.messages',
40+
'django.contrib.staticfiles',
41+
'authen.apps.AuthenConfig',
42+
43+
]
44+
45+
AUTH_USER_MODEL = 'authen.CustomUser'
46+
47+
MIDDLEWARE = [
48+
'django.middleware.security.SecurityMiddleware',
49+
'django.contrib.sessions.middleware.SessionMiddleware',
50+
'django.middleware.common.CommonMiddleware',
51+
'django.middleware.csrf.CsrfViewMiddleware',
52+
'django.contrib.auth.middleware.AuthenticationMiddleware',
53+
'django.contrib.messages.middleware.MessageMiddleware',
54+
'django.middleware.clickjacking.XFrameOptionsMiddleware',
55+
]
56+
57+
ROOT_URLCONF = 'DjangoAuth.urls'
58+
59+
TEMPLATES = [
60+
{
61+
'BACKEND': 'django.template.backends.django.DjangoTemplates',
62+
'DIRS': [BASE_DIR / "templates"],
63+
'APP_DIRS': True,
64+
'OPTIONS': {
65+
'context_processors': [
66+
'django.template.context_processors.debug',
67+
'django.template.context_processors.request',
68+
'django.contrib.auth.context_processors.auth',
69+
'django.contrib.messages.context_processors.messages',
70+
],
71+
},
72+
},
73+
]
74+
75+
WSGI_APPLICATION = 'DjangoAuth.wsgi.application'
76+
77+
78+
# Database
79+
# https://docs.djangoproject.com/en/3.1/ref/settings/#databases
80+
81+
DATABASES = {
82+
83+
'default': {
84+
'ENGINE': 'django.db.backends.mysql',
85+
'NAME': 'atikGohel',
86+
'USER' : 'root',
87+
'PASSWORD' : '',
88+
'HOST': 'localhost',
89+
'PORT' : '3306',
90+
}
91+
}
92+
93+
94+
95+
96+
# Password validation
97+
# https://docs.djangoproject.com/en/3.1/ref/settings/#auth-password-validators
98+
99+
AUTH_PASSWORD_VALIDATORS = [
100+
{
101+
'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator',
102+
},
103+
{
104+
'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator',
105+
},
106+
{
107+
'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator',
108+
},
109+
{
110+
'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator',
111+
},
112+
]
113+
114+
115+
# Internationalization
116+
# https://docs.djangoproject.com/en/3.1/topics/i18n/
117+
118+
LANGUAGE_CODE = 'en-us'
119+
120+
TIME_ZONE = 'UTC'
121+
122+
USE_I18N = True
123+
124+
USE_L10N = True
125+
126+
USE_TZ = True
127+
128+
129+
# Static files (CSS, JavaScript, Images)
130+
# https://docs.djangoproject.com/en/3.1/howto/static-files/
131+
132+
STATIC_URL = '/static/'
133+
134+
# Add Manually
135+
STATICFILES_DIRS = [
136+
BASE_DIR / "static"
137+
]
138+
139+
140+
LOGIN_REDIRECT_URL = 'home'
141+
LOGOUT_REDIRECT_URL = 'home'

DjangoAuth/urls.py

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
"""DjangoAuth URL Configuration
2+
3+
The `urlpatterns` list routes URLs to views. For more information please see:
4+
https://docs.djangoproject.com/en/3.1/topics/http/urls/
5+
Examples:
6+
Function views
7+
1. Add an import: from my_app import views
8+
2. Add a URL to urlpatterns: path('', views.home, name='home')
9+
Class-based views
10+
1. Add an import: from other_app.views import Home
11+
2. Add a URL to urlpatterns: path('', Home.as_view(), name='home')
12+
Including another URLconf
13+
1. Import the include() function: from django.urls import include, path
14+
2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
15+
"""
16+
from django.contrib import admin
17+
from django.urls import path, include
18+
19+
urlpatterns = [
20+
path('admin/', admin.site.urls),
21+
path('', include('authen.urls')),
22+
]

DjangoAuth/wsgi.py

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
"""
2+
WSGI config for DjangoAuth project.
3+
4+
It exposes the WSGI callable as a module-level variable named ``application``.
5+
6+
For more information on this file, see
7+
https://docs.djangoproject.com/en/3.1/howto/deployment/wsgi/
8+
"""
9+
10+
import os
11+
12+
from django.core.wsgi import get_wsgi_application
13+
14+
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'DjangoAuth.settings')
15+
16+
application = get_wsgi_application()

authen/__init__.py

Whitespace-only changes.

0 commit comments

Comments
 (0)