1
0
Fork 0
mirror of https://github.com/retspen/webvirtcloud synced 2025-07-31 12:41:08 +00:00

Rename webvirtcloud to webvirt

This commit is contained in:
Gao Jiangmiao 2019-08-16 13:24:26 +08:00
parent 3488661dc9
commit 5130871248
21 changed files with 45 additions and 99 deletions

14
webvirt/wsgi.py Normal file
View file

@ -0,0 +1,14 @@
"""
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()