uncloud-mravi/uncloud_v3/uncloud/wsgi.py
Nico Schottelius e1c2e22e64 fresh start v3
Signed-off-by: Nico Schottelius <nico@nico-notebook.schottelius.org>
2022-01-02 17:13:01 +01:00

16 lines
391 B
Python

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