From 6226b02f8be136a81ceff2b79b8c4280cfc5e3fb Mon Sep 17 00:00:00 2001 From: eliott Date: Sun, 23 Dec 2007 00:35:10 -0500 Subject: removed need to specify deploypath manually --- local_settings.py.example | 3 --- settings.py | 2 ++ 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/local_settings.py.example b/local_settings.py.example index e202443..7016341 100644 --- a/local_settings.py.example +++ b/local_settings.py.example @@ -25,9 +25,6 @@ MEDIA_ROOT = '/var/www/archlinux/htdocs/img/devs/' ### web url for serving image files MEDIA_URL = 'http://www.archlinux.org/img/devs/' -# do not put a / at the end -DEPLOY_PATH = '/var/www/archlinux/archlinux' - # Make this unique, and don't share it with anybody. SECRET_KEY = '00000000000000000000000000000000000000000000000' diff --git a/settings.py b/settings.py index f209f94..75ea18a 100644 --- a/settings.py +++ b/settings.py @@ -1,3 +1,4 @@ +import os # Django settings for archweb_dev project. ## Import local settings @@ -17,6 +18,7 @@ if ENABLE_CACHE == True: CACHE_MIDDLEWARE_ANONYMOUS_ONLY = True # Full path to the data directory +DEPLOY_PATH = os.path.dirname(os.path.realpath(__file__)) DATA_DIR = '%s/data' % DEPLOY_PATH # Local time zone for this installation. All choices can be found here: -- cgit v1.2.3-24-g4f1b