diff options
Diffstat (limited to 'bn_django/git_wiki/settings.py.example')
-rw-r--r-- | bn_django/git_wiki/settings.py.example | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/bn_django/git_wiki/settings.py.example b/bn_django/git_wiki/settings.py.example new file mode 100644 index 0000000..8257277 --- /dev/null +++ b/bn_django/git_wiki/settings.py.example @@ -0,0 +1,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) |