cmpuqrct/settings/default.py
changeset 24 bd646c8d68d8
child 67 dbb8316af016
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/cmpuqrct/settings/default.py	Sun Aug 11 22:55:57 2013 +0200
@@ -0,0 +1,24 @@
+# Default settings intended for development use
+
+## Error handling
+DEBUG = True
+TEMPLATE_DEBUG = DEBUG
+
+## Secrets
+# Make this unique, and don't share it with anybody.
+SECRET_KEY = 'wn78diy2()$xy%fapw8aka1hc_8(dbjv*wktfzn6x&rc#1p8x)'
+
+## Database
+DATABASES = {
+    'default': {
+        'ENGINE': 'django.db.backends.sqlite3', # Add 'postgresql_psycopg2', 'mysql', 'sqlite3' or 'oracle'.
+        'NAME': './var/cmpuqrct.db',                      # Or path to database file if using sqlite3.
+        # The following settings are not used with sqlite3:
+        'USER': '',
+        'PASSWORD': '',
+        'HOST': '',                      # Empty for localhost through domain sockets or '127.0.0.1' for localhost through TCP.
+        'PORT': '',                      # Set to empty string for default.
+    }
+}
+
+