Files @ fb55eebdc18c
Branch filter:

Location: website/www/wsgicustom.wsgi

bkuhn
Add link to announcement of campaign in template.

Since the details of what it means to "count twice" are in that
announcement, we should link to it here.
# 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()