https://forge.softwareheritage.org/source/swh-deposit.git
Raw File
Tip revision: 8b4d3199ecc2af40623444773b7e8ba578d1773e authored by Jenkins for Software Heritage on 05 September 2019, 08:20:50 UTC
Updated backport on stretch-swh from debian/0.0.73-1_swh1 (unstable-swh)
Tip revision: 8b4d319
wsgi.py
# Copyright (C) 2017-2019  The Software Heritage developers
# See the AUTHORS file at the top-level directory of this distribution
# License: GNU General Public License version 3, or any later version
# See top-level LICENSE file for more information

"""
WSGI config for swh.deposit 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.10/howto/deployment/wsgi/
"""

from django.core.wsgi import get_wsgi_application

application = get_wsgi_application()
back to top