view sat_website/wsgi.py @ 152:1801236f27f0

update deploy.sh
author souliane <souliane@mailoo.org>
date Mon, 30 Oct 2017 23:39:09 +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()