Files @ 5847bc3b3ed9
Branch filter:

Location: website/www/wsgicustom.wsgi

bkuhn
Improve Supporter appeal re: number of Supporters

The Supporter appeal didn't discuss the two different targets in much
detail. This change explains a bit better where the "service split" is
between what we can do with 750 Supporters vs. 2,500 Supporters.

Karen helped with this change.
# 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()