newmediamonitoring/NewMediaMonitoring/wsgi.py

22 lines
597 B
Python

"""
WSGI config for NewMediaMonitoring 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.1/howto/deployment/wsgi/
"""
import os
import signal
import sys
import time
import traceback
from django.core.wsgi import get_wsgi_application
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'NewMediaMonitoring.settings')
sys.path.append("/var/www/p3/newmediamonitoring/current")
# sys.path.append("/var/www/p3/newmediamonitoring")
application = get_wsgi_application()