diff options
author | bnewbold <bnewbold@manus.(none)> | 2007-03-07 14:56:46 -0800 |
---|---|---|
committer | bnewbold <bnewbold@manus.(none)> | 2007-03-07 14:56:46 -0800 |
commit | 953fc002832a9afe59372bf513ef167916608e05 (patch) | |
tree | 73ba59d2479d240c7b14d9e1757b9e5cecad5fb6 /bn_django/git_wiki/settings.py | |
parent | 8a459f1bfcad487d6e594b9c3d7ca485a9084f49 (diff) | |
download | bnewnet-953fc002832a9afe59372bf513ef167916608e05.tar.gz bnewnet-953fc002832a9afe59372bf513ef167916608e05.zip |
comments progress, style changes
Diffstat (limited to 'bn_django/git_wiki/settings.py')
-rw-r--r-- | bn_django/git_wiki/settings.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bn_django/git_wiki/settings.py b/bn_django/git_wiki/settings.py index b94d318..965ac26 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 = '/srv/git/' +GITWIKI_BASE = '/home/bnewbold/knowledge/' # leave this blank (NO WHITE SPACE) unless you're using a bare repo -GITWIKI_NAME = 'knowledge' +GITWIKI_NAME = '' # fill path to the git command -GITCOMMAND = '/usr/bin/git' +GITCOMMAND = '/usr/local/bin/git' GITWIKI_DIR = str(GITWIKI_BASE) + '/' + str(GITWIKI_NAME) + '.git' GITPREFIX = 'cd ' +str(GITWIKI_BASE) + '; ' + str(GITCOMMAND) + ' --git-dir=' \ |