aboutsummaryrefslogtreecommitdiffstats
path: root/bn_django/git_wiki/settings.py
blob: ed07f53bcd6c93bcb9dcbbbedf19ab142f5f10ef (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 = '/home/bnewbold/knowledge/'

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

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

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