Files @ 0328a2cfbcd9
Branch filter:

Location: website/www/wsgicustom.wsgi

brett
img: Photo of Karen at LibrePlanet 2018.

Molly deBlanc told us:
The image:
http://static.fsf.org/nosvn/libreplanet/2018/highlights/karen_sandler.jpg is
licensed CC-BY-SA 4.0, with a photo credit to Kori Feener.
# wsgicustom.py

import os
import sys

root_dir = os.path.abspath(os.path.dirname(__file__))
sys.path.insert(0, root_dir)
os.environ['DJANGO_SETTINGS_MODULE'] = 'conservancy.settings'

from django.core.wsgi import get_wsgi_application
application = get_wsgi_application()