Mercurial > sat_legacy_website
view sat_website/wsgi.py @ 154:87382593e514
fix EMAIL_BACKEND setting
author | souliane <souliane@mailoo.org> |
---|---|
date | Thu, 02 Nov 2017 23:48:18 +0100 |
parents | b1c16cd53b62 |
children |
line wrap: on
line source
""" WSGI config for sat_website 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.11/howto/deployment/wsgi/ """ import os from django.core.wsgi import get_wsgi_application os.environ.setdefault("DJANGO_SETTINGS_MODULE", "settings") application = get_wsgi_application()