* Add 404 and 500 templates for displaying pretty page not found and server error...
[matthijs/projects/xerxes.git] / settings.py
index 9805d75b1607730f5ff19aa51323568b7af03566..9393d9494882b9fae7dd0883e9edfca9f03b3c3b 100644 (file)
@@ -1,8 +1,14 @@
 # Django settings for ee project.
 
+import os
+
+# Import database settings from a default file (so we can keep those out
+# of git).
 from dbsettings import *
 
-DEBUG = True
+PROJECT_DIR = os.path.dirname(__file__)
+
+DEBUG = False
 TEMPLATE_DEBUG = DEBUG
 
 ADMINS = (
@@ -78,7 +84,7 @@ TEMPLATE_DIRS = (
     # Put strings here, like "/home/html/django_templates" or "C:/www/django/templates".
     # Always use forward slashes, even on Windows.
     # Don't forget to use absolute paths, not relative paths.
-    '/home/matthijs/docs/src/django/ee/templates',
+    os.path.join(PROJECT_DIR, 'templates'),
 )
 
 INSTALLED_APPS = (
@@ -110,3 +116,14 @@ AUTHENTICATION_BACKENDS = (
     'ee.auth.PhpBBBackend',
     'django.contrib.auth.backends.ModelBackend',
 )
+
+AUTH_PROFILE_MODULE = 'base.UserProfile'
+
+# Import local settings, that are specific to this installation. These
+# can override any settings specified here.
+try:
+    from localsettings import *
+except ImportError:
+    pass
+
+# vim: set sts=4 sw=4 expandtab: