aboutsummaryrefslogtreecommitdiffstats
path: root/bn_django/git_wiki/settings.py
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@animus.robocracy.org>2007-03-07 02:00:30 -0800
committerBryan Newbold <bnewbold@animus.robocracy.org>2007-03-07 02:00:30 -0800
commita715e7988aa7e7f5136b7e98dad7d0f8fb389954 (patch)
treef3ee7a09b07a7a91a741e8c84d304cc7a0f91a4e /bn_django/git_wiki/settings.py
parenta62acac56d61c592b0625a88f0a6977d33c0f1dc (diff)
downloadbnewnet-a715e7988aa7e7f5136b7e98dad7d0f8fb389954.tar.gz
bnewnet-a715e7988aa7e7f5136b7e98dad7d0f8fb389954.zip
again, changes for production, including static relocation
Diffstat (limited to 'bn_django/git_wiki/settings.py')
-rw-r--r--bn_django/git_wiki/settings.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/bn_django/git_wiki/settings.py b/bn_django/git_wiki/settings.py
index 965ac26..b94d318 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/'
# 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'
GITWIKI_DIR = str(GITWIKI_BASE) + '/' + str(GITWIKI_NAME) + '.git'
GITPREFIX = 'cd ' +str(GITWIKI_BASE) + '; ' + str(GITCOMMAND) + ' --git-dir=' \