Files @ 6e25a6e084d6
Branch filter:

Location: website/www/wsgicustom.wsgi

brett
base: Start progressbar for new match.

This code should be easier to adapt to future matches too, by just changing
the constants in the first `with` declaration and whatever text is desired.
# wsgicustom.py

import os
import sys

root_dir = os.path.abspath(os.path.dirname(__file__))
sys.path.insert(0, root_dir)
os.environ['DJANGO_SETTINGS_MODULE'] = 'conservancy.settings'

from django.core.wsgi import get_wsgi_application
application = get_wsgi_application()