aboutsummaryrefslogtreecommitdiffstats
path: root/bn_django/git_wiki/settings.py
blob: 882dd300dd9e8fc89acaf46dce1d09158ac2d0e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13

# full path to directory holding the wiki repository (or sys links to 
#   the repositories)
GITWIKI_BASE = '/srv/git/knowledge.git'

# leave this blank (NO WHITE SPACE) unless you're using a bare repo
GITWIKI_NAME = 'knowledge'

# fill path to the git command
GITCOMMAND = '/usr/bin/git'

GITPREFIX = 'cd ' +str(GITWIKI_BASE) + '/.. ; ' + str(GITCOMMAND) + ' --git-dir=' \
        + str(GITWIKI_BASE)