aboutsummaryrefslogtreecommitdiffstats
path: root/example/settings.py
diff options
context:
space:
mode:
authorRob Hudson2010-02-11 14:21:27 -0800
committerRob Hudson2010-02-11 14:21:27 -0800
commit960d1cf38bb512794a29d0e49d9b7447602861d9 (patch)
treeaa9abb3cfc897fb5f184e371f33f7b4da8f46014 /example/settings.py
parented74a1c9fcc48855e4f3cb28db55d91fa9d1a089 (diff)
parent9327cd86b2c9f1db0108c97e630c6d5610e65b0d (diff)
downloaddjango-debug-toolbar-960d1cf38bb512794a29d0e49d9b7447602861d9.tar.bz2
Merge branch 'master' into js_closure
Diffstat (limited to 'example/settings.py')
-rw-r--r--example/settings.py34
1 files changed, 34 insertions, 0 deletions
diff --git a/example/settings.py b/example/settings.py
new file mode 100644
index 0000000..06e153d
--- /dev/null
+++ b/example/settings.py
@@ -0,0 +1,34 @@
+import os
+PROJECT_PATH = os.path.realpath(os.path.dirname(__file__))
+
+ADMIN_MEDIA_PREFIX = '/admin_media/'
+DATABASE_ENGINE = 'sqlite3'
+DATABASE_NAME = 'example.db'
+DEBUG = True
+INSTALLED_APPS = (
+ 'django.contrib.auth',
+ 'django.contrib.admin',
+ 'django.contrib.contenttypes',
+ 'django.contrib.sessions',
+ 'django.contrib.sites',
+ 'debug_toolbar',
+)
+INTERNAL_IPS = ('127.0.0.1',)
+MEDIA_ROOT = os.path.join(PROJECT_PATH, 'media')
+MEDIA_URL = '/media'
+MIDDLEWARE_CLASSES = (
+ 'django.middleware.common.CommonMiddleware',
+ 'django.contrib.sessions.middleware.SessionMiddleware',
+ 'django.contrib.auth.middleware.AuthenticationMiddleware',
+ 'debug_toolbar.middleware.DebugToolbarMiddleware',
+)
+ROOT_URLCONF = 'example.urls'
+SECRET_KEY = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890abcd'
+SITE_ID = 1
+TEMPLATE_CONTEXT_PROCESSORS = (
+ 'django.core.context_processors.auth',
+ 'django.core.context_processors.media',
+ 'django.core.context_processors.request',
+)
+TEMPLATE_DEBUG = DEBUG
+TEMPLATE_DIRS = (os.path.join(PROJECT_PATH, 'templates'))