Files @ 70d6eb7140c7
Branch filter:

Location: website/www/wsgi.py

bsturmfels
podjango: Link up "The Corresponding Source" title

This helps with navigating back to the home page.
1
2
3
4
5
6
7
import os

from django.core.wsgi import get_wsgi_application

os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'conservancy.settings')

application = get_wsgi_application()