https://forge.softwareheritage.org/source/swh-deposit.git
Raw File
Tip revision: e79c30a3b05d3d93af6143ae001ec8b86c4e5bce authored by Antoine R. Dumont (@ardumont) on 01 February 2018, 16:55:23 UTC
swh.deposit.api.private: Fix revision message missing client name
Tip revision: e79c30a
wsgi.py
# Copyright (C) 2017  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/
"""

import os
import sys

from django.core.wsgi import get_wsgi_application

sys.path.append('/etc/softwareheritage')
os.environ.setdefault("DJANGO_SETTINGS_MODULE",
                      "swh.deposit.settings.production")

application = get_wsgi_application()
back to top