Revision de30cb2551315904603e7122172b25ac984eb686 authored by Irina Kovaleva on 05 April 2022, 11:31:13 UTC, committed by GitHub on 05 April 2022, 11:31:13 UTC
Co-authored-by: Kirill Sizov <kirill.sizov@intel.com>
1 parent d22b12d
Raw File
wsgi.py

# Copyright (C) 2018 Intel Corporation
#
# SPDX-License-Identifier: MIT

"""
WSGI config for CVAT 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

from django.core.wsgi import get_wsgi_application

os.environ.setdefault("DJANGO_SETTINGS_MODULE", "cvat.settings.{}" \
    .format(os.environ.get("DJANGO_CONFIGURATION", "development")))

application = get_wsgi_application()
back to top