"""

Django settings for library project.

 

Generated by 'django-admin startproject' using Django 3.1.1.

 

For more information on this file, see

https://docs.djangoproject.com/en/3.1/topics/settings/

 

For the full list of settings and their values, see

https://docs.djangoproject.com/en/3.1/ref/settings/

"""

 

from pathlib import Path

 

# Build paths inside the project like this: BASE_DIR / 'subdir'.

BASE_DIR = Path(__file__).resolve().parent.parent

 

# Quick-start development settings - unsuitable for production

# See https://docs.djangoproject.com/en/3.1/howto/deployment/checklist/

 

# SECURITY WARNING: keep the secret key used in production secret!

SECRET_KEY = 'st&^2y1*#&=e=#o77rv(#fr7$swcue#tvfp8lunvpm0w67ap^k'

 

# SECURITY WARNING: don't run with debug turned on in production!

DEBUG = True

 

ALLOWED_HOSTS = [

    

 

]

 

# Application definition

 

INSTALLED_APPS = [

    'catalog',

    'django.contrib.admin',

    'django.contrib.auth',

    'django.contrib.contenttypes',

    'django.contrib.sessions',

    'django.contrib.messages',

    'django.contrib.staticfiles',

    'support.apps.SupportConfig',

]

 

MIDDLEWARE = [

    'django.middleware.security.SecurityMiddleware',

    'django.contrib.sessions.middleware.SessionMiddleware',

    'django.middleware.common.CommonMiddleware',

    'django.middleware.csrf.CsrfViewMiddleware',

    'django.contrib.auth.middleware.AuthenticationMiddleware',

    'django.contrib.messages.middleware.MessageMiddleware',

    'django.middleware.clickjacking.XFrameOptionsMiddleware',

]

 

ROOT_URLCONF = 'library.urls'

 

TEMPLATES = [

    {

        'BACKEND''django.template.backends.django.DjangoTemplates',

        'DIRS': [],

        'APP_DIRS'True,

        'OPTIONS': {

            'context_processors': [

                'django.template.context_processors.debug',

                'django.template.context_processors.request',

                'django.contrib.auth.context_processors.auth',

                'django.contrib.messages.context_processors.messages',

            ],

        },

    },

]

 

WSGI_APPLICATION = 'library.wsgi.application'

 

# Database

# https://docs.djangoproject.com/en/3.1/ref/settings/#databases

 

DATABASES = {

    'default': {

        'ENGINE''django.db.backends.sqlite3',

        'NAME': BASE_DIR / 'db.sqlite3',

    }

}

 

# Password validation

# https://docs.djangoproject.com/en/3.1/ref/settings/#auth-password-validators

 

AUTH_PASSWORD_VALIDATORS = [

    {

        'NAME''django.contrib.auth.password_validation.UserAttributeSimilarityValidator',

    },

    {

        'NAME''django.contrib.auth.password_validation.MinimumLengthValidator',

    },

    {

        'NAME''django.contrib.auth.password_validation.CommonPasswordValidator',

    },

    {

        'NAME''django.contrib.auth.password_validation.NumericPasswordValidator',

    },

]

 

# Internationalization

# https://docs.djangoproject.com/en/3.1/topics/i18n/

 

LANGUAGE_CODE = 'en-us'

 

TIME_ZONE = 'UTC'

 

USE_I18N = True

 

USE_L10N = True

 

USE_TZ = True

 

# Static files (CSS, _javascript_, Images)

# https://docs.djangoproject.com/en/3.1/howto/static-files/

 

STATIC_URL = '/static/'

 

 

 

Sent from Mail for Windows 10

 

From: Akinfolarin Stephen
Sent: 29 September 2020 22:04
To: [email protected]
Subject: Re: could you help me to solve this problem? ☹☹

 

Let me have the screenshot of your django settings that is where the issue his

 

On Tue, Sep 29, 2020, 16:00 FARISKA <[email protected]> wrote:

Already but still I got message like this

 

Sent from Mail for Windows 10

 

From: RANGA BHARATH JINKA
Sent: 29 September 2020 20:48
To: [email protected]
Subject: Re: could you help me to solve this problem? ☹☹

 

Hi,

 

   Try python manage.py runserver

 

On Tue, Sep 29, 2020 at 7:12 PM FARISCHA MAKAY <[email protected]> wrote:

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to [email protected].
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/e9ad149c-428b-44df-97b1-f9d67d689e3dn%40googlegroups.com.


 

--

Thanks and Regards

 

J. Ranga Bharath

cell: 9110334114

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to [email protected].
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CAK5m316pAxhD4%2Bmrw3arA2jizf%2Bq%2B9f0%3Dhh_Lb-t4dzqQB-D3w%40mail.gmail.com.

 

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to [email protected].
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/F0C3E8F2-ECD6-4416-99EF-50A695DA99B3%40hxcore.ol.

--
You received this message because you are subscribed to a topic in the Google Groups "Django users" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/django-users/hn9-MeHE3yQ/unsubscribe.
To unsubscribe from this group and all its topics, send an email to [email protected].
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CAFujGLy0z0J38XkBZtpS6kQwimz8Pkgf9aj86VBxp3pm%2BVfbqw%40mail.gmail.com.

 

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to [email protected].
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/A0984A28-945F-422E-B212-BB251C9A6A8F%40hxcore.ol.

Reply via email to