Files @ 2ecf537e336d
Branch filter:

Location: website/www/wsgicustom.wsgi

bkuhn
Update my bio to the current version.

This is the current version that i use when submitting talks.
# 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()