Files @ 4cbf566e3151
Branch filter:

Location: website/www/wsgicustom.wsgi

brett
contractpatch: Page layout adjustments.

Try to make sections clearer and avoid the "big monolith of text"
feeling.
# 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()