Files @ caa0ff7b861d
Branch filter:

Location: website/conservancy/wsgi.py

bsturmfels
Load JS through Django's staticfiles app

This avoids the need for adjustments during development and allows production to
be served under a single /static declaration in Apache.
"""WSGI config for project project.

It exposes the WSGI callable as a module-level variable named ``application``.
"""

import os

from django.core.wsgi import get_wsgi_application

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

application = get_wsgi_application()