From ed9e597e32c7a118e47eced3b07974297945e40b Mon Sep 17 00:00:00 2001 From: root Date: Sat, 24 Feb 2007 22:18:26 -0800 Subject: changes to make things work on the production server --- bn_django/git_wiki/settings.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'bn_django/git_wiki/settings.py') diff --git a/bn_django/git_wiki/settings.py b/bn_django/git_wiki/settings.py index ed07f53..882dd30 100644 --- a/bn_django/git_wiki/settings.py +++ b/bn_django/git_wiki/settings.py @@ -1,13 +1,13 @@ # full path to directory holding the wiki repository (or sys links to # the repositories) -GITWIKI_BASE = '/home/bnewbold/knowledge/' +GITWIKI_BASE = '/srv/git/knowledge.git' # leave this blank (NO WHITE SPACE) unless you're using a bare repo -GITWIKI_NAME = '' +GITWIKI_NAME = 'knowledge' # fill path to the git command -GITCOMMAND = '/usr/local/bin/git' +GITCOMMAND = '/usr/bin/git' -GITPREFIX = 'cd ' +str(GITWIKI_BASE) + '; ' + str(GITCOMMAND) + ' --git-dir=' \ - + str(GITWIKI_BASE) + '/' + GITWIKI_NAME + '.git' +GITPREFIX = 'cd ' +str(GITWIKI_BASE) + '/.. ; ' + str(GITCOMMAND) + ' --git-dir=' \ + + str(GITWIKI_BASE) -- cgit v1.2.3