1
0
Fork 0
mirror of https://github.com/retspen/webvirtcloud synced 2025-02-15 17:05:17 +00:00
webvirtcloud/webvirt/wsgi.py

15 lines
389 B
Python
Raw Normal View History

2015-02-27 08:53:51 +00:00
"""
2019-08-16 05:24:26 +00:00
WSGI config for webvirt project.
2015-02-27 08:53:51 +00: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.7/howto/deployment/wsgi/
"""
2017-03-10 19:02:52 +00:00
import os
2019-08-16 05:24:26 +00:00
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "webvirt.settings")
2015-02-27 08:53:51 +00:00
from django.core.wsgi import get_wsgi_application
application = get_wsgi_application()