Files @ 3ebf6a740bf9
Branch filter:

Location: website/www/wsgicustom.wsgi

bkuhn
Even more removal of deprecated stuff.

The base template has most of this now.
# wsgicustom.py

import os
import sys

sys.path = ['/var/www'] + sys.path
os.environ['DJANGO_SETTINGS_MODULE'] = 'conservancy.settings'

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