Files @ d623a9b5c4a6
Branch filter:

Location: website/www/wsgicustom.wsgi

Bradley M. Kuhn
Copyleft Compliance: rewrite about page in light of strategic plan

The copyleft-compliance/about.html page doubles as the introduction
page to our compliance work. This is a start at the rewrite of that
page to link off to the new items and have new text to inspire
interest in the project.
#!/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()