<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">from django.conf import settings

if not hasattr(settings, 'WIKI_REPOSITORY_PATH'):
    raise Exception('You must set WIKI_REPOSITORY_PATH in your settings file.')

REPOSITORY_PATH = settings.WIKI_REPOSITORY_PATH
GALLERY_URL = settings.MEDIA_URL + 'images/'
</pre></body></html>