Set the tickets and docs folder to None as we won't use them

This commit is contained in:
Pierre-Yves Chibon 2017-07-11 09:15:36 +02:00
parent abfb679f05
commit 4c1700065b

View file

@ -86,13 +86,15 @@ WEBHOOK = True
GIT_FOLDER = '/srv/git/repositories'
### Folder containing the docs repos
DOCS_FOLDER = '/srv/git/repositories/docs'
#DOCS_FOLDER = '/srv/git/repositories/docs'
DOCS_FOLDER = None
### Folder containing the pull-requests repos
REQUESTS_FOLDER = '/srv/git/repositories/requests'
### Folder containing the tickets repos
TICKETS_FOLDER = '/srv/git/repositories/tickets'
#TICKETS_FOLDER = '/srv/git/repositories/tickets'
TICKETS_FOLDER = None
### Folder containing the clones of the remotes git repo
REMOTE_GIT_FOLDER = '/srv/git/remotes'