Files @ 2006604b154e
Branch filter:

Location: website/www/wsgicustom.wsgi

bkuhn
Bdale Garbee joined Eval Committee on 2016-10-15

See https://sfconservancy.org/news/2016/dec/15/garbee-eval-committee/
for announcement.
# 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()