This repository was archived by the owner on Nov 7, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtest_settings.py
69 lines (56 loc) · 1.62 KB
/
test_settings.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
import os
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': ':memory:',
}
}
PROJECT_APPS = [
'fluentcms_publishing',
'fluentcms_publishing.pagetypes.fluentpage',
'fluentcms_publishing.pagetypes.redirectnode',
]
INSTALLED_APPS = [
'django.contrib.auth',
'django.contrib.sites',
'django.contrib.sessions',
'django.contrib.staticfiles',
'django.contrib.contenttypes',
'django.contrib.admin',
'publisher',
'model_settings',
'fluent_pages',
'fluent_contents',
'fluent_contents.plugins.rawhtml',
'mptt',
'polymorphic',
'polymorphic_tree',
'slug_preview',
'parler',
] + PROJECT_APPS
MIDDLEWARE_CLASSES = [
'django.contrib.sessions.middleware.SessionMiddleware',
'django.contrib.auth.middleware.AuthenticationMiddleware',
'django.contrib.messages.middleware.MessageMiddleware',
]
TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': [
os.path.join(os.path.dirname(__file__), 'test_templates', 'layouts'),
],
'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',
],
},
},
]
ROOT_URLCONF = 'test_urls'
SITE_ID = 1
STATIC_URL = '/static/'
FLUENT_PAGES_TEMPLATE_DIR = os.path.join(os.path.dirname(__file__), 'test_templates', 'layouts')