|
@@ -1,24 +1,31 @@
|
|
|
"""
|
|
|
-Django settings for bakerydemo project.
|
|
|
+Django settings for temp project.
|
|
|
|
|
|
-Generated by 'django-admin startproject' using Django 1.8.2.
|
|
|
+Generated by 'django-admin startproject' using Django 1.10.5.
|
|
|
|
|
|
For more information on this file, see
|
|
|
-https://docs.djangoproject.com/en/1.8/topics/settings/
|
|
|
+https://docs.djangoproject.com/en/1.10/topics/settings/
|
|
|
|
|
|
For the full list of settings and their values, see
|
|
|
-https://docs.djangoproject.com/en/1.8/ref/settings/
|
|
|
+https://docs.djangoproject.com/en/1.10/ref/settings/
|
|
|
"""
|
|
|
|
|
|
-# Build paths inside the project like this: os.path.join(BASE_DIR, ...)
|
|
|
import os
|
|
|
|
|
|
-PROJECT_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
|
|
|
-BASE_DIR = os.path.dirname(PROJECT_DIR)
|
|
|
+# Build paths inside the project like this: os.path.join(BASE_DIR, ...)
|
|
|
+BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
|
|
|
|
|
|
|
|
|
# Quick-start development settings - unsuitable for production
|
|
|
-# See https://docs.djangoproject.com/en/1.8/howto/deployment/checklist/
|
|
|
+# See https://docs.djangoproject.com/en/1.10/howto/deployment/checklist/
|
|
|
+
|
|
|
+# SECURITY WARNING: keep the secret key used in production secret!
|
|
|
+SECRET_KEY = 'c6u0-9c!7nilj_ysatsda0(f@e_2mws2f!6m0n^o*4#*q#kzp)'
|
|
|
+
|
|
|
+# SECURITY WARNING: don't run with debug turned on in production!
|
|
|
+DEBUG = True
|
|
|
+
|
|
|
+ALLOWED_HOSTS = []
|
|
|
|
|
|
|
|
|
# Application definition
|
|
@@ -41,10 +48,10 @@ INSTALLED_APPS = [
|
|
|
'wagtail.wagtailimages',
|
|
|
'wagtail.wagtailsearch',
|
|
|
'wagtail.wagtailadmin',
|
|
|
+ 'wagtail.contrib.modeladmin',
|
|
|
'wagtail.wagtailcore',
|
|
|
|
|
|
'modelcluster',
|
|
|
- 'compressor',
|
|
|
'taggit',
|
|
|
|
|
|
'django.contrib.admin',
|
|
@@ -55,7 +62,7 @@ INSTALLED_APPS = [
|
|
|
'django.contrib.staticfiles',
|
|
|
]
|
|
|
|
|
|
-MIDDLEWARE_CLASSES = [
|
|
|
+MIDDLEWARE = [
|
|
|
'django.middleware.security.SecurityMiddleware',
|
|
|
'django.contrib.sessions.middleware.SessionMiddleware',
|
|
|
'django.middleware.common.CommonMiddleware',
|
|
@@ -66,6 +73,7 @@ MIDDLEWARE_CLASSES = [
|
|
|
|
|
|
'wagtail.wagtailcore.middleware.SiteMiddleware',
|
|
|
'wagtail.wagtailredirects.middleware.RedirectMiddleware',
|
|
|
+
|
|
|
]
|
|
|
|
|
|
ROOT_URLCONF = 'bakerydemo.urls'
|
|
@@ -73,9 +81,7 @@ ROOT_URLCONF = 'bakerydemo.urls'
|
|
|
TEMPLATES = [
|
|
|
{
|
|
|
'BACKEND': 'django.template.backends.django.DjangoTemplates',
|
|
|
- 'DIRS': [
|
|
|
- os.path.join(PROJECT_DIR, 'templates'),
|
|
|
- ],
|
|
|
+ 'DIRS': [],
|
|
|
'APP_DIRS': True,
|
|
|
'OPTIONS': {
|
|
|
'context_processors': [
|
|
@@ -92,18 +98,18 @@ WSGI_APPLICATION = 'bakerydemo.wsgi.application'
|
|
|
|
|
|
|
|
|
# Database
|
|
|
-# https://docs.djangoproject.com/en/1.8/ref/settings/#databases
|
|
|
+# https://docs.djangoproject.com/en/1.10/ref/settings/#databases
|
|
|
|
|
|
DATABASES = {
|
|
|
'default': {
|
|
|
- 'ENGINE': 'django.db.backends.postgresql_psycopg2',
|
|
|
- 'NAME': 'bakerydemo',
|
|
|
+ 'ENGINE': 'django.db.backends.sqlite3',
|
|
|
+ 'NAME': 'bakerydemodb',
|
|
|
}
|
|
|
}
|
|
|
|
|
|
|
|
|
# Password validation
|
|
|
-# https://docs.djangoproject.com/en/1.9/ref/settings/#auth-password-validators
|
|
|
+# https://docs.djangoproject.com/en/1.10/ref/settings/#auth-password-validators
|
|
|
|
|
|
AUTH_PASSWORD_VALIDATORS = [
|
|
|
{
|
|
@@ -122,11 +128,11 @@ AUTH_PASSWORD_VALIDATORS = [
|
|
|
|
|
|
|
|
|
# Internationalization
|
|
|
-# https://docs.djangoproject.com/en/1.8/topics/i18n/
|
|
|
+# https://docs.djangoproject.com/en/1.10/topics/i18n/
|
|
|
|
|
|
-LANGUAGE_CODE = 'en-gb'
|
|
|
+LANGUAGE_CODE = 'en-us'
|
|
|
|
|
|
-TIME_ZONE = 'Europe/London'
|
|
|
+TIME_ZONE = 'UTC'
|
|
|
|
|
|
USE_I18N = True
|
|
|
|
|
@@ -135,6 +141,7 @@ USE_L10N = True
|
|
|
USE_TZ = True
|
|
|
|
|
|
|
|
|
+
|
|
|
# Static files (CSS, JavaScript, Images)
|
|
|
# https://docs.djangoproject.com/en/1.8/howto/static-files/
|
|
|
|
|
@@ -144,9 +151,9 @@ STATICFILES_FINDERS = [
|
|
|
'compressor.finders.CompressorFinder',
|
|
|
]
|
|
|
|
|
|
-STATICFILES_DIRS = [
|
|
|
- os.path.join(PROJECT_DIR, 'static'),
|
|
|
-]
|
|
|
+# STATICFILES_DIRS = [
|
|
|
+# os.path.join(PROJECT_DIR, 'static'),
|
|
|
+# ]
|
|
|
|
|
|
STATIC_ROOT = os.path.join(BASE_DIR, 'static')
|
|
|
STATIC_URL = '/static/'
|
|
@@ -154,39 +161,14 @@ STATIC_URL = '/static/'
|
|
|
MEDIA_ROOT = os.path.join(BASE_DIR, 'media')
|
|
|
MEDIA_URL = '/media/'
|
|
|
|
|
|
-
|
|
|
-# Django compressor settings
|
|
|
-# http://django-compressor.readthedocs.org/en/latest/settings/
|
|
|
-
|
|
|
-COMPRESS_PRECOMPILERS = [
|
|
|
- ('text/x-scss', 'django_libsass.SassCompiler'),
|
|
|
-]
|
|
|
-
|
|
|
-
|
|
|
-# Use Redis as the cache backend for extra performance
|
|
|
-
|
|
|
-CACHES = {
|
|
|
- 'default': {
|
|
|
- 'BACKEND': 'django_redis.cache.RedisCache',
|
|
|
- 'LOCATION': '127.0.0.1:6379',
|
|
|
- 'KEY_PREFIX': 'bakerydemo',
|
|
|
- 'OPTIONS': {
|
|
|
- 'CLIENT_CLASS': 'django_redis.client.DefaultClient',
|
|
|
- }
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-
|
|
|
# Use Elasticsearch as the search backend for extra performance and better search results
|
|
|
-
|
|
|
WAGTAILSEARCH_BACKENDS = {
|
|
|
'default': {
|
|
|
- 'BACKEND': 'wagtail.wagtailsearch.backends.elasticsearch.ElasticSearch',
|
|
|
+ 'BACKEND': 'wagtail.wagtailsearch.backends.db',
|
|
|
'INDEX': 'bakerydemo',
|
|
|
},
|
|
|
}
|
|
|
|
|
|
-
|
|
|
# Wagtail settings
|
|
|
|
|
|
WAGTAIL_SITE_NAME = "bakerydemo"
|