Files @ 5754f877c5c1
Branch filter:

Location: website/www/wsgicustom.wsgi - annotation

bkuhn
Add paragraph about principles-discuss.

Welcome those who visit this page to join the principles-discuss mailing
list. In doing so, also make a link to the principles themselves.
# 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()