summaryrefslogtreecommitdiff
path: root/conf
diff options
context:
space:
mode:
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'),
+ }
+}