1
0
Fork 0
mirror of https://github.com/retspen/webvirtcloud synced 2025-02-14 16:35:18 +00:00
webvirtcloud/webvirt/wsgi.py
2019-08-16 13:26:33 +08:00

14 lines
389 B
Python

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