gulasch-r0mstore/gulaschromstore/wsgi.py

17 lines
408 B
Python
Raw Permalink Normal View History

2017-02-01 22:05:48 +01:00
"""
2017-05-02 18:51:21 +02:00
WSGI config for gulaschromstore project.
2017-02-01 22:05:48 +01:00
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.10/howto/deployment/wsgi/
"""
import os
from django.core.wsgi import get_wsgi_application
2017-05-02 18:51:21 +02:00
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "gulaschromstore.settings")
2017-02-01 22:05:48 +01:00
application = get_wsgi_application()