Files @ 2b709f61e022
Branch filter:

Location: website/conservancy/wsgi.py

bsturmfels
Make bin/deploy abort if there's an error with `git push`

For example, your push failed because there's upstream changes.
"""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.prod')

application = get_wsgi_application()