mirror of
https://github.com/Hopiu/wagtail.git
synced 2026-05-04 21:44:44 +00:00
118 lines
3.1 KiB
Python
118 lines
3.1 KiB
Python
import os
|
|
|
|
from django.conf import global_settings
|
|
|
|
|
|
WAGTAIL_ROOT = os.path.dirname(__file__)
|
|
STATIC_ROOT = os.path.join(WAGTAIL_ROOT, 'test-static')
|
|
MEDIA_ROOT = os.path.join(WAGTAIL_ROOT, 'test-media')
|
|
|
|
|
|
DATABASES = {
|
|
'default': {
|
|
'ENGINE': os.environ.get('DATABASE_ENGINE', 'django.db.backends.postgresql_psycopg2'),
|
|
'NAME': 'wagtaildemo',
|
|
'USER': os.environ.get('DATABASE_USER', 'postgres'),
|
|
}
|
|
}
|
|
|
|
SECRET_KEY = 'not needed'
|
|
|
|
ROOT_URLCONF='wagtail.tests.urls'
|
|
|
|
STATIC_URL = '/static/'
|
|
STATIC_ROOT = STATIC_ROOT
|
|
|
|
STATICFILES_FINDERS = (
|
|
'django.contrib.staticfiles.finders.AppDirectoriesFinder',
|
|
'compressor.finders.CompressorFinder',
|
|
)
|
|
|
|
MEDIA_ROOT=MEDIA_ROOT
|
|
|
|
USE_TZ = True
|
|
|
|
TEMPLATE_CONTEXT_PROCESSORS = global_settings.TEMPLATE_CONTEXT_PROCESSORS + (
|
|
'django.core.context_processors.request',
|
|
)
|
|
|
|
MIDDLEWARE_CLASSES = (
|
|
'django.middleware.common.CommonMiddleware',
|
|
'django.contrib.sessions.middleware.SessionMiddleware',
|
|
'django.middleware.csrf.CsrfViewMiddleware',
|
|
'django.contrib.auth.middleware.AuthenticationMiddleware',
|
|
'django.contrib.messages.middleware.MessageMiddleware',
|
|
'django.middleware.clickjacking.XFrameOptionsMiddleware',
|
|
|
|
'wagtail.wagtailcore.middleware.SiteMiddleware',
|
|
|
|
'wagtail.wagtailredirects.middleware.RedirectMiddleware',
|
|
)
|
|
|
|
INSTALLED_APPS = [
|
|
'django.contrib.contenttypes',
|
|
'django.contrib.sessions',
|
|
'django.contrib.auth',
|
|
'django.contrib.messages',
|
|
'django.contrib.staticfiles',
|
|
'django.contrib.admin',
|
|
|
|
'taggit',
|
|
'south',
|
|
'compressor',
|
|
|
|
'wagtail.wagtailcore',
|
|
'wagtail.wagtailadmin',
|
|
'wagtail.wagtaildocs',
|
|
'wagtail.wagtailsnippets',
|
|
'wagtail.wagtailusers',
|
|
'wagtail.wagtailimages',
|
|
'wagtail.wagtailembeds',
|
|
'wagtail.wagtailsearch',
|
|
'wagtail.wagtailredirects',
|
|
'wagtail.wagtailforms',
|
|
'wagtail.contrib.wagtailstyleguide',
|
|
'wagtail.tests',
|
|
]
|
|
|
|
# Using DatabaseCache to make sure that the cache is cleared between tests.
|
|
# This prevents false-positives in some wagtail core tests where we are
|
|
# changing the 'wagtail_root_paths' key which may cause future tests to fail.
|
|
CACHES = {
|
|
'default': {
|
|
'BACKEND': 'django.core.cache.backends.db.DatabaseCache',
|
|
'LOCATION': 'cache',
|
|
}
|
|
}
|
|
|
|
PASSWORD_HASHERS = (
|
|
'django.contrib.auth.hashers.MD5PasswordHasher', # don't use the intentionally slow default password hasher
|
|
)
|
|
|
|
COMPRESS_ENABLED = False # disable compression so that we can run tests on the content of the compress tag
|
|
|
|
LOGIN_REDIRECT_URL = 'wagtailadmin_home'
|
|
LOGIN_URL = 'wagtailadmin_login'
|
|
|
|
|
|
WAGTAILSEARCH_BACKENDS = {
|
|
'default': {
|
|
'BACKEND': 'wagtail.wagtailsearch.backends.db.DBSearch',
|
|
}
|
|
}
|
|
|
|
try:
|
|
# Only add Elasticsearch backend if the elasticsearch-py library is installed
|
|
import elasticsearch
|
|
|
|
# Import succeeded, add an Elasticsearch backend
|
|
WAGTAILSEARCH_BACKENDS['elasticsearch'] = {
|
|
'BACKEND': 'wagtail.wagtailsearch.backends.elasticsearch.ElasticSearch',
|
|
'TIMEOUT': 10,
|
|
'max_retries': 1,
|
|
}
|
|
except ImportError:
|
|
pass
|
|
|
|
|
|
WAGTAIL_SITE_NAME = "Test Site"
|