-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathtest_settings.py
More file actions
36 lines (28 loc) · 794 Bytes
/
Copy pathtest_settings.py
File metadata and controls
36 lines (28 loc) · 794 Bytes
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
from os.path import abspath, dirname, join, normpath
# Absolute filesystem path to the Django project directory:
DJANGO_ROOT = dirname(dirname(abspath(__file__)))
SECRET_KEY = 'secret'
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': 'test_database.db',
}
}
STATICFILES_FINDERS = (
'django.contrib.staticfiles.finders.FileSystemFinder',
'django.contrib.staticfiles.finders.AppDirectoriesFinder',
)
TEMPLATE_LOADERS = (
'django.template.loaders.filesystem.Loader',
'django.template.loaders.app_directories.Loader',
)
TEMPLATE_DIRS = (
normpath(join(DJANGO_ROOT, 'templates')),
)
INSTALLED_APPS = (
'django.contrib.humanize',
'django.contrib.staticfiles',
'bootstrap3',
'twitter_stream',
'south',
)