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

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

EQU_FOLDER = '/home/bnewbold/bn-project/static/latex2png/'
EQU_PREFIX = '/static/latex2png/'

# 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'

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