mirror of
https://github.com/retspen/webvirtcloud
synced 2024-12-24 23:25:24 +00:00
14 lines
389 B
Python
14 lines
389 B
Python
"""
|
|
WSGI config for webvirtcloud 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/2.0/howto/deployment/wsgi/
|
|
"""
|
|
|
|
import os
|
|
os.environ["DJANGO_SETTINGS_MODULE"] = "webvirtcloud.settings"
|
|
|
|
from django.core.wsgi import get_wsgi_application
|
|
application = get_wsgi_application()
|