This repository has been archived on 2022-08-01. You can view files and clone it, but cannot push or open issues or pull requests.
DEMOS2/allauthdemo/wsgi.py

15 lines
397 B
Python
Executable File

"""
WSGI config for allauthdemo 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.6/howto/deployment/wsgi/
"""
import os
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "allauthdemo.settings")
from django.core.wsgi import get_wsgi_application
application = get_wsgi_application()