Files @ e7c1171b6e3d
Branch filter:

Location: website/www/wsgicustom.wsgi

brett
blog: Refactor entry rendering into a partial.

This helps ensure that entries are rendered consistently wherever they
appear.
# 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()