summaryrefslogtreecommitdiff
path: root/conf
diff options
context:
space:
mode:
authorMarkus Zapke-Grùˆndemann <info@keimlink.de>2011-12-29 21:33:14 +0100
committerMarkus Zapke-Grùˆndemann <info@keimlink.de>2011-12-29 21:33:14 +0100
commit61cbcea237a2c69bbaa3595050536ec10bed2b4d (patch)
treee9d82986929d8b8d53e9bce43d4fc08ffb03a3d4 /conf
Initial commit.
Diffstat (limited to 'conf')
-rw-r--r--conf/dev_settings.py13
1 files changed, 13 insertions, 0 deletions
diff --git a/conf/dev_settings.py b/conf/dev_settings.py
new file mode 100644
index 0000000..b61a979
--- /dev/null
+++ b/conf/dev_settings.py
@@ -0,0 +1,13 @@
+import os
+
+from settings import SITE_ROOT
+
+DEBUG = True
+TEMPLATE_DEBUG = DEBUG
+
+DATABASES = {
+ 'default': {
+ 'ENGINE': 'django.db.backends.sqlite3',
+ 'NAME': os.path.join(SITE_ROOT, 'sublab.db'),
+ }
+}