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

# full path to directory holding the wiki repository (or sys links to 
#   the repositories)
GITWIKI_BASE = '/srv/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'

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