"""
WSGI config for StratFit 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.9/howto/deployment/wsgi/
"""

import os, sys, site

# add the hellodjango project path into the sys.path
sys.path.append('/var/www/html/services')

# add the virtualenv site-packages path to the sys.path
sys.path.append('/var/www/html/services/stratfitenv/lib/python3.8/site-packages')

site.addsitedir(' /var/www/html/services/stratfitenv/lib/python3.8/site-packages')

# poiting to the project settings
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "StratFit.settings")

from django.core.wsgi import get_wsgi_application
application = get_wsgi_application()
