|
| 1 | +""" |
| 2 | +Django settings for django_embed project. |
| 3 | +
|
| 4 | +Generated by 'django-admin startproject' using Django 2.2.1. |
| 5 | +
|
| 6 | +For more information on this file, see |
| 7 | +https://docs.djangoproject.com/en/2.2/topics/settings/ |
| 8 | +
|
| 9 | +For the full list of settings and their values, see |
| 10 | +https://docs.djangoproject.com/en/2.2/ref/settings/ |
| 11 | +""" |
| 12 | + |
| 13 | +from os.path import abspath, dirname, join |
| 14 | +from pathlib import Path |
| 15 | + |
| 16 | +from bokeh.settings import bokehjsdir |
| 17 | + |
| 18 | +# Build paths inside the project like this: join(BASE_DIR, ...) |
| 19 | +MODULE_DIR = dirname(abspath(__file__)) |
| 20 | +BASE_DIR = dirname(MODULE_DIR) |
| 21 | +BASE_PATH = Path(BASE_DIR) |
| 22 | + |
| 23 | +# Quick-start development settings - unsuitable for production |
| 24 | +# See https://docs.djangoproject.com/en/2.2/howto/deployment/checklist/ |
| 25 | + |
| 26 | +# SECURITY WARNING: keep the secret key used in production secret! |
| 27 | +SECRET_KEY = 'i^gyfuyz+zy66k%%hmy-kun(#n)2cj&)zry*+robiqh^x!x_&4' |
| 28 | + |
| 29 | +# SECURITY WARNING: don't run with debug turned on in production! |
| 30 | +DEBUG = True |
| 31 | + |
| 32 | +ALLOWED_HOSTS = [] |
| 33 | + |
| 34 | + |
| 35 | +# Application definition |
| 36 | + |
| 37 | +INSTALLED_APPS = [ |
| 38 | + 'django.contrib.admin', |
| 39 | + 'django.contrib.auth', |
| 40 | + 'django.contrib.contenttypes', |
| 41 | + 'django.contrib.sessions', |
| 42 | + 'django.contrib.messages', |
| 43 | + 'channels', |
| 44 | + 'bokeh_django', |
| 45 | +] |
| 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 = 'django_embed.urls' |
| 58 | + |
| 59 | +TEMPLATES = [ |
| 60 | + { |
| 61 | + 'BACKEND': 'django.template.backends.django.DjangoTemplates', |
| 62 | + 'DIRS': [join(MODULE_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 | +ASGI_APPLICATION = 'django_embed.routing.application' |
| 76 | + |
| 77 | + |
| 78 | +# Database |
| 79 | +# https://docs.djangoproject.com/en/2.2/ref/settings/#databases |
| 80 | + |
| 81 | +DATABASES = { |
| 82 | + 'default': { |
| 83 | + 'ENGINE': 'django.db.backends.sqlite3', |
| 84 | + 'NAME': join(BASE_DIR, 'db.sqlite3'), |
| 85 | + } |
| 86 | +} |
| 87 | + |
| 88 | + |
| 89 | +# Password validation |
| 90 | +# https://docs.djangoproject.com/en/2.2/ref/settings/#auth-password-validators |
| 91 | + |
| 92 | +AUTH_PASSWORD_VALIDATORS = [ |
| 93 | + {'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator'}, |
| 94 | + {'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator'}, |
| 95 | + {'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator'}, |
| 96 | + {'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator'}, |
| 97 | +] |
| 98 | + |
| 99 | + |
| 100 | +# Internationalization |
| 101 | +# https://docs.djangoproject.com/en/2.2/topics/i18n/ |
| 102 | + |
| 103 | +LANGUAGE_CODE = 'en-us' |
| 104 | + |
| 105 | +TIME_ZONE = 'UTC' |
| 106 | + |
| 107 | +USE_I18N = True |
| 108 | + |
| 109 | +USE_L10N = True |
| 110 | + |
| 111 | +USE_TZ = True |
| 112 | + |
| 113 | + |
| 114 | +# Static files (CSS, JavaScript, Images) |
| 115 | +# https://docs.djangoproject.com/en/2.2/howto/static-files/ |
| 116 | + |
| 117 | +STATIC_URL = '/static/' |
| 118 | + |
| 119 | +STATICFILES_DIRS = [bokehjsdir()] |
| 120 | + |
| 121 | +THEMES_DIR = join(MODULE_DIR, "themes") |
0 commit comments