aboutsummaryrefslogtreecommitdiffstats
path: root/bn_django/git_wiki/settings.py
diff options
context:
space:
mode:
authorbnewbold <bnewbold@manus.(none)>2007-02-24 22:19:26 -0800
committerbnewbold <bnewbold@manus.(none)>2007-02-24 22:19:26 -0800
commit6b56fa9f477ac65440cb10428aac93b1ed68b5eb (patch)
tree40a954bfa1ffe3c346962e84a0325f1e132ea522 /bn_django/git_wiki/settings.py
parent3beb31d829e87f32fa89a36d46390f9560d92974 (diff)
parented9e597e32c7a118e47eced3b07974297945e40b (diff)
downloadbnewnet-6b56fa9f477ac65440cb10428aac93b1ed68b5eb.tar.gz
bnewnet-6b56fa9f477ac65440cb10428aac93b1ed68b5eb.zip
Merge branch 'production' of animus:/srv/django/bn-project/ into comments
Diffstat (limited to 'bn_django/git_wiki/settings.py')
-rw-r--r--bn_django/git_wiki/settings.py10
1 files changed, 5 insertions, 5 deletions
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)