-
Notifications
You must be signed in to change notification settings - Fork 2
/
test_settings.py
47 lines (39 loc) · 921 Bytes
/
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
import os
SECRET_KEY = "lorem ipsum"
INSTALLED_APPS = (
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sites',
'tango_shared',
'fretboard',
'typogrify',
'voting',
'easy_thumbnails',
)
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': ':memory:',
}
}
SITE_ID = 1
ROOT_URLCONF = 'fretboard.urls'
#stripped down middleware
MIDDLEWARE = [
'django.contrib.sessions.middleware.SessionMiddleware',
'django.middleware.common.CommonMiddleware',
'django.middleware.csrf.CsrfViewMiddleware',
'django.contrib.auth.middleware.AuthenticationMiddleware',
]
TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'APP_DIRS': True,
},
]
"""
TEMPLATE_DIRS = (
'templates',
os.path.join(os.path.dirname(__file__), '..', 'templates').replace('\\', '/')
)
"""