diff options
author | root <root@animus.robocracy.org> | 2007-03-09 00:20:35 -0800 |
---|---|---|
committer | root <root@animus.robocracy.org> | 2007-03-09 00:20:35 -0800 |
commit | d7db262344b5dea3e7cd8de857a24553d96b45fb (patch) | |
tree | bce95092910f7029aa39e999429d2a02de1f44d6 | |
parent | 953fc002832a9afe59372bf513ef167916608e05 (diff) | |
download | bnewnet-d7db262344b5dea3e7cd8de857a24553d96b45fb.tar.gz bnewnet-d7db262344b5dea3e7cd8de857a24553d96b45fb.zip |
ignore symlink in static dir to django-admin style stuff
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | bn_django/git_wiki/settings.py | 6 |
2 files changed, 4 insertions, 3 deletions
@@ -7,3 +7,4 @@ bn_django/settings.py *.pyo *.swp knowledge +static/django-admin diff --git a/bn_django/git_wiki/settings.py b/bn_django/git_wiki/settings.py index 965ac26..b94d318 100644 --- a/bn_django/git_wiki/settings.py +++ b/bn_django/git_wiki/settings.py @@ -1,13 +1,13 @@ # full path to directory holding the wiki repository (or sys links to # the repositories) -GITWIKI_BASE = '/home/bnewbold/knowledge/' +GITWIKI_BASE = '/srv/git/' # leave this blank (NO WHITE SPACE) unless you're using a bare repo -GITWIKI_NAME = '' +GITWIKI_NAME = 'knowledge' # fill path to the git command -GITCOMMAND = '/usr/local/bin/git' +GITCOMMAND = '/usr/bin/git' GITWIKI_DIR = str(GITWIKI_BASE) + '/' + str(GITWIKI_NAME) + '.git' GITPREFIX = 'cd ' +str(GITWIKI_BASE) + '; ' + str(GITCOMMAND) + ' --git-dir=' \ |