Revision 796991a1aaca3b4c0ea95b308253a1cc58f4ba2a authored by Boris Sekachev on 17 January 2022, 08:13:58 UTC, committed by GitHub on 17 January 2022, 08:13:58 UTC
* Added intelligent paste labels function, added notification when remove labels from raw editor

* Adjusted raw tab behaviour

* Fixed issue with selection

* Updated version and changelog, removed previous implementation

* Removed outdated comment

* Additional checks on the server

* Added check for default boolean attr

* Updated version

* Conditionally show lost labels/attributes

* Remove labels only when create

Co-authored-by: Nikita Manovich <nikita.manovich@intel.com>
1 parent c77d956
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