Files @ e2fcd0dd9ca7
Branch filter:

Location: website/www/wsgicustom.wsgi

brett
cron: Remove unused compile-all.py script.

This work is now done near the end of website-update.sh, with better
error handling and fewer processes spawned.
# 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()