Files @ be762220af99
Branch filter:

Location: website/www/wsgicustom.wsgi

bkuhn
Foresight project wound down a while back.

Foresight project isn't active anymore and informed us a while back that
they weren't. We left them up for a time, but it was confusing
# 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()