From a715e7988aa7e7f5136b7e98dad7d0f8fb389954 Mon Sep 17 00:00:00 2001 From: Bryan Newbold Date: Wed, 7 Mar 2007 02:00:30 -0800 Subject: again, changes for production, including static relocation --- bn_django/git_wiki/settings.py | 6 +++--- bn_django/git_wiki/templates/git_wiki/base.html | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'bn_django/git_wiki') 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=' \ diff --git a/bn_django/git_wiki/templates/git_wiki/base.html b/bn_django/git_wiki/templates/git_wiki/base.html index 9277037..532fde3 100644 --- a/bn_django/git_wiki/templates/git_wiki/base.html +++ b/bn_django/git_wiki/templates/git_wiki/base.html @@ -2,7 +2,7 @@ {% block stylesheets %} {{ block.super }} - + {% endblock %} {% block path %} -- cgit v1.2.3