base.py 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195
  1. """
  2. Django settings for temp project.
  3. Generated by 'django-admin startproject' using Django 1.10.5.
  4. For more information on this file, see
  5. https://docs.djangoproject.com/en/3.2/topics/settings/
  6. For the full list of settings and their values, see
  7. https://docs.djangoproject.com/en/3.2/ref/settings/
  8. """
  9. import os
  10. # Build paths inside the project like this: os.path.join(PROJECT_DIR, ...)
  11. PROJECT_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
  12. BASE_DIR = os.path.dirname(PROJECT_DIR)
  13. # Quick-start development settings - unsuitable for production
  14. # See https://docs.djangoproject.com/en/3.2/howto/deployment/checklist/
  15. # SECURITY WARNING: keep the secret key used in production secret!
  16. SECRET_KEY = 'c6u0-9c!7nilj_ysatsda0(f@e_2mws2f!6m0n^o*4#*q#kzp)'
  17. # SECURITY WARNING: don't run with debug turned on in production!
  18. DEBUG = True
  19. ALLOWED_HOSTS = []
  20. # Uncomment this (and adjust as appropriate) to enable django-debug-toolbar
  21. # INTERNAL_IPS = [
  22. # '127.0.0.1',
  23. # ]
  24. # Application definition
  25. INSTALLED_APPS = [
  26. 'bakerydemo.base',
  27. 'bakerydemo.blog',
  28. 'bakerydemo.breads',
  29. 'bakerydemo.locations',
  30. 'bakerydemo.search',
  31. 'wagtail.contrib.search_promotions',
  32. 'wagtail.contrib.forms',
  33. 'wagtail.contrib.redirects',
  34. 'wagtail.embeds',
  35. 'wagtail.sites',
  36. 'wagtail.users',
  37. 'wagtail.snippets',
  38. 'wagtail.documents',
  39. 'wagtail.images',
  40. 'wagtail.search',
  41. 'wagtail.admin',
  42. 'wagtail.api.v2',
  43. 'wagtail.locales',
  44. 'wagtail.contrib.modeladmin',
  45. 'wagtail.contrib.routable_page',
  46. 'wagtail.contrib.simple_translation',
  47. 'wagtail',
  48. 'rest_framework',
  49. 'modelcluster',
  50. 'taggit',
  51. 'wagtailfontawesome',
  52. 'debug_toolbar',
  53. 'django.contrib.admin',
  54. 'django.contrib.auth',
  55. 'django.contrib.contenttypes',
  56. 'django.contrib.sessions',
  57. 'django.contrib.messages',
  58. 'django.contrib.staticfiles',
  59. 'django.contrib.sitemaps',
  60. ]
  61. MIDDLEWARE = [
  62. 'debug_toolbar.middleware.DebugToolbarMiddleware',
  63. 'django.middleware.security.SecurityMiddleware',
  64. 'django.contrib.sessions.middleware.SessionMiddleware',
  65. 'django.middleware.common.CommonMiddleware',
  66. 'django.middleware.csrf.CsrfViewMiddleware',
  67. 'django.contrib.auth.middleware.AuthenticationMiddleware',
  68. 'django.contrib.messages.middleware.MessageMiddleware',
  69. 'django.middleware.clickjacking.XFrameOptionsMiddleware',
  70. 'wagtail.contrib.redirects.middleware.RedirectMiddleware',
  71. ]
  72. DEFAULT_AUTO_FIELD = "django.db.models.AutoField"
  73. ROOT_URLCONF = 'bakerydemo.urls'
  74. TEMPLATES = [
  75. {
  76. 'BACKEND': 'django.template.backends.django.DjangoTemplates',
  77. 'DIRS': ['bakerydemo/templates', ],
  78. 'APP_DIRS': True,
  79. 'OPTIONS': {
  80. 'context_processors': [
  81. 'django.template.context_processors.debug',
  82. 'django.template.context_processors.request',
  83. 'django.contrib.auth.context_processors.auth',
  84. 'django.contrib.messages.context_processors.messages',
  85. ],
  86. },
  87. },
  88. ]
  89. WSGI_APPLICATION = 'bakerydemo.wsgi.application'
  90. # Database
  91. # https://docs.djangoproject.com/en/3.2/ref/settings/#databases
  92. DATABASES = {
  93. 'default': {
  94. 'ENGINE': 'django.db.backends.sqlite3',
  95. 'NAME': os.path.join(BASE_DIR, 'bakerydemodb')
  96. }
  97. }
  98. # Password validation
  99. # https://docs.djangoproject.com/en/3.2/ref/settings/#auth-password-validators
  100. AUTH_PASSWORD_VALIDATORS = [
  101. {
  102. 'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator',
  103. },
  104. {
  105. 'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator',
  106. },
  107. {
  108. 'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator',
  109. },
  110. {
  111. 'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator',
  112. },
  113. ]
  114. # Internationalization
  115. # https://docs.djangoproject.com/en/3.2/topics/i18n/
  116. LANGUAGE_CODE = 'en-us'
  117. TIME_ZONE = 'UTC'
  118. USE_I18N = True
  119. USE_L10N = True
  120. USE_TZ = True
  121. # Static files (CSS, JavaScript, Images)
  122. # https://docs.djangoproject.com/en/3.2/howto/static-files/
  123. STATICFILES_FINDERS = [
  124. 'django.contrib.staticfiles.finders.FileSystemFinder',
  125. 'django.contrib.staticfiles.finders.AppDirectoriesFinder',
  126. ]
  127. STATICFILES_DIRS = [
  128. os.path.join(PROJECT_DIR, 'static'),
  129. ]
  130. STATIC_ROOT = os.path.join(PROJECT_DIR, 'collect_static')
  131. STATIC_URL = '/static/'
  132. MEDIA_ROOT = os.path.join(PROJECT_DIR, 'media')
  133. MEDIA_URL = '/media/'
  134. # Override in local settings or replace with your own key. Please don't use our demo key in production!
  135. GOOGLE_MAP_API_KEY = 'AIzaSyD31CT9P9KxvNUJOwDq2kcFEIG8ADgaFgw'
  136. # Use Elasticsearch as the search backend for extra performance and better search results
  137. WAGTAILSEARCH_BACKENDS = {
  138. 'default': {
  139. 'BACKEND': 'wagtail.search.backends.database',
  140. 'INDEX': 'bakerydemo',
  141. },
  142. }
  143. # Wagtail settings
  144. WAGTAIL_SITE_NAME = "bakerydemo"
  145. WAGTAIL_I18N_ENABLED = True
  146. WAGTAIL_CONTENT_LANGUAGES = LANGUAGES = [
  147. ("en", "English"),
  148. ("de", "Deutsch"),
  149. ("ar", "العربيّة"),
  150. ]