summaryrefslogtreecommitdiff
path: root/settings.py
diff options
context:
space:
mode:
Diffstat (limited to 'settings.py')
-rw-r--r--settings.py13
1 files changed, 3 insertions, 10 deletions
diff --git a/settings.py b/settings.py
index 70cfeae2..f98f709c 100644
--- a/settings.py
+++ b/settings.py
@@ -2,21 +2,19 @@ import os
# Django settings for archweb project.
## Set the debug values
-DEBUG = True
+DEBUG = False
TEMPLATE_DEBUG = DEBUG
## Notification admins
-# Put yourself here
ADMINS = (
- ('Nicolas Reynolds', 'fauno@kiwwwi.com.ar'),
+ ('Dan McGee', 'dan@archlinux.org'),
)
# Set managers to admins
MANAGERS = ADMINS
# Package out-of-date emails for orphans
-# TODO configure email client
-NOTIFICATIONS = ['packages@list.parabolagnulinux.org']
+NOTIFICATIONS = ['arch-notifications@archlinux.org']
# Full path to the data directory
DEPLOY_PATH = os.path.dirname(os.path.realpath(__file__))
@@ -35,7 +33,6 @@ 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
@@ -91,7 +88,6 @@ 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 = (
@@ -125,11 +121,8 @@ INSTALLED_APPS = (
'devel',
'public',
'south', # database migration support
- # 'django_git'
)
-REPOS_ROOT='/srv/git/projects'
-
## Import local settings
from local_settings import *