Files @ e80d35a73e99
Branch filter:

Location: website/www/wsgicustom.wsgi

Bradley M. Kuhn
Copyleft Compliance: enforcement strategy & firmware liberation

These two new documents are based on grant proposals for this work.
We are preparing to announce the work publicly soon. This is a first
draft of both documents.
#!/usr/bin/env python

import os
import sys

# Work around <https://bugs.python.org/issue7980>
import _strptime

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()