-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_settings.py
63 lines (53 loc) · 1.35 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
import os
BASE_DIR = os.path.dirname(os.path.abspath(__file__))
assert os.path.isfile(os.path.join(BASE_DIR, 'manage.py'))
DEBUG = True
VAR_ROOT = os.path.join(BASE_DIR, 'var')
SECRET_KEY = 'really_secret'
if not os.path.isdir(VAR_ROOT):
print('Creating var root %s' % VAR_ROOT)
os.makedirs(VAR_ROOT)
ARTICLES_PER_PAGE = 5
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': 'test_db',
}
}
INSTALLED_APPS = [
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sites',
'easy_thumbnails',
'enumfields',
'cms',
'menus',
'treebeard',
'filer',
'cmsplugin_articles_ai',
]
LANGUAGES = [
("en-us", "English"),
]
MIDDLEWARE_CLASSES = [
'django.contrib.sessions.middleware.SessionMiddleware',
'django.contrib.auth.middleware.AuthenticationMiddleware',
]
TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': [],
'APP_DIRS': True,
'OPTIONS': {
'context_processors': [
'django.template.context_processors.request',
'django.contrib.auth.context_processors.auth',
],
},
},
]
ROOT_URLCONF = 'urls'
SITE_ID = 1
STATIC_ROOT = os.path.join(VAR_ROOT, 'static')
WSGI_APPLICATION = 'test_wsgi.application'