dpaste/dpaste/wsgi.py

16 lines
394 B
Python
Raw Normal View History

2014-12-15 04:28:28 +11:00
"""
WSGI config for foobar project.
It exposes the WSGI callable as a module-level variable named ``application``.
For more information on this file, see
https://docs.djangoproject.com/en/1.7/howto/deployment/wsgi/
"""
import os
2014-12-15 04:28:28 +11:00
from django.core.wsgi import get_wsgi_application
2019-01-25 23:47:00 +11:00
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "dpaste.settings.local")
2014-12-15 04:28:28 +11:00
application = get_wsgi_application()