Files @ 368fc07f6feb
Branch filter:

Location: website/www/wsgicustom.wsgi - annotation

bkuhn
Switch link to be all blog posts on ContractPatch

Step 3 in backport of unversioned changes from Brett done in
01ab5892ba0f6c18f2d3eb001c3a88d2e45435d7.
# 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()