· 5 years ago · May 12, 2020, 12:24 AM
1"""
2Django settings for prototype project.
3
4Generated by 'django-admin startproject' using Django 3.0.4.
5
6For more information on this file, see
7https://docs.djangoproject.com/en/3.0/topics/settings/
8
9For the full list of settings and their values, see
10https://docs.djangoproject.com/en/3.0/ref/settings/
11"""
12
13import os
14
15# Build paths inside the project like this: os.path.join(BASE_DIR, ...)
16from urllib import request
17
18
19BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
20
21
22# Quick-start development settings - unsuitable for production
23# See https://docs.djangoproject.com/en/3.0/howto/deployment/checklist/
24
25# SECURITY WARNING: keep the secret key used in production secret!
26SECRET_KEY = '!-vt1(m5sfd900a1&w_zq^t!rl=4&-9^q89+n!ff#d^02dv8d!'
27
28# SECURITY WARNING: don't run with debug turned on in production!
29DEBUG = True
30
31ALLOWED_HOSTS = []
32
33
34# Application definition
35
36INSTALLED_APPS = [
37 'django.contrib.admin',
38 'django.contrib.auth',
39 'django.contrib.contenttypes',
40 'django.contrib.sessions',
41 'django.contrib.messages',
42 'django.contrib.staticfiles',
43 'prototypeapp.apps.PrototypeappConfig',
44]
45
46MIDDLEWARE = [
47 'django.middleware.security.SecurityMiddleware',
48 'django.contrib.sessions.middleware.SessionMiddleware',
49 'django.middleware.common.CommonMiddleware',
50 #'django.middleware.csrf.CsrfViewMiddleware',
51 'django.contrib.auth.middleware.AuthenticationMiddleware',
52 'django.contrib.messages.middleware.MessageMiddleware',
53 'django.middleware.clickjacking.XFrameOptionsMiddleware',
54]
55
56ROOT_URLCONF = 'prototype.urls'
57
58TEMPLATES = [
59 {
60 'BACKEND': 'django.template.backends.django.DjangoTemplates',
61 'DIRS': [os.path.join(BASE_DIR, 'templates')]
62 ,
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
75WSGI_APPLICATION = 'prototype.wsgi.application'
76
77
78# Database
79# https://docs.djangoproject.com/en/3.0/ref/settings/#databases
80
81DATABASES = {
82 'default': {
83 'ENGINE': 'django.db.backends.sqlite3',
84 'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
85 }
86}
87
88
89# Password validation
90# https://docs.djangoproject.com/en/3.0/ref/settings/#auth-password-validators
91
92AUTH_PASSWORD_VALIDATORS = [
93 {
94 'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator',
95 },
96 {
97 'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator',
98 },
99 {
100 'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator',
101 },
102 {
103 'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator',
104 },
105]
106
107
108# Internationalization
109# https://docs.djangoproject.com/en/3.0/topics/i18n/
110
111LANGUAGE_CODE = 'en-us'
112
113TIME_ZONE = 'UTC'
114
115USE_I18N = True
116
117USE_L10N = True
118
119USE_TZ = True
120
121
122# Static files (CSS, JavaScript, Images)
123# https://docs.djangoproject.com/en/3.0/howto/static-files/
124
125STATIC_URL = '/static/'
126STATICFILES_DIRS = [
127 os.path.join(BASE_DIR, 'templates'),
128]
129
130MEDIA_URL = '/media/'
131MEDIA_ROOT = os.path.join(BASE_DIR, 'media/')
132
133EMAIL_BACKEND = 'django.core.mail.backends.smtp.EmailBackend'
134EMAIL_HOST = 'smtp.gmail.com'
135EMAIL_PORT = 587
136EMAIL_HOST_USER = 'miranisanjay417@gmail.com'
137EMAIL_HOST_PASSWORD = 'Sanjay@12345'
138DEFAULT_FROM_EMAIL = 'miranisanjay417@gmail.com'
139EMAIL_USE_TLS = True