summaryrefslogtreecommitdiff
path: root/settings.py
diff options
context:
space:
mode:
authorParabola <dev@list.parabolagnulinux.org>2010-12-27 22:36:35 +0000
committerParabola <dev@list.parabolagnulinux.org>2010-12-27 22:36:35 +0000
commitd8fe78f471f2b7821a99f7c2697e0e2ab0a374c1 (patch)
tree69422d8e98375d8c4622071fb20e76b3bffa638b /settings.py
parent131023868a582158a4ac461dc2516e19a7fb27c6 (diff)
Various changes, plus licenses are now pointing to the real licenses. (gtklocker)
Diffstat (limited to 'settings.py')
-rw-r--r--settings.py13
1 files changed, 10 insertions, 3 deletions
diff --git a/settings.py b/settings.py
index f98f709c..70cfeae2 100644
--- a/settings.py
+++ b/settings.py
@@ -2,19 +2,21 @@ import os
# Django settings for archweb project.
## Set the debug values
-DEBUG = False
+DEBUG = True
TEMPLATE_DEBUG = DEBUG
## Notification admins
+# Put yourself here
ADMINS = (
- ('Dan McGee', 'dan@archlinux.org'),
+ ('Nicolas Reynolds', 'fauno@kiwwwi.com.ar'),
)
# Set managers to admins
MANAGERS = ADMINS
# Package out-of-date emails for orphans
-NOTIFICATIONS = ['arch-notifications@archlinux.org']
+# TODO configure email client
+NOTIFICATIONS = ['packages@list.parabolagnulinux.org']
# Full path to the data directory
DEPLOY_PATH = os.path.dirname(os.path.realpath(__file__))
@@ -33,6 +35,7 @@ SITE_ID = 1
# If you set this to False, Django will make some optimizations so as not
# to load the internationalization machinery.
+# TODO work i18n
USE_I18N = False
# If you set this to False, Django will not format dates, numbers and
@@ -88,6 +91,7 @@ TEMPLATE_DIRS = (
# Put strings here, like "/home/html/django_templates".
# Always use forward slashes, even on Windows.
'%s/templates' % DEPLOY_PATH,
+ '/usr/lib/python2.7/site-packages/django_git/templates/django_git/'
)
TEMPLATE_LOADERS = (
@@ -121,8 +125,11 @@ INSTALLED_APPS = (
'devel',
'public',
'south', # database migration support
+ # 'django_git'
)
+REPOS_ROOT='/srv/git/projects'
+
## Import local settings
from local_settings import *