"""
WSGI config for my_dj_tst 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/3.1/howto/deployment/wsgi/
"""

import os

import sys

from django.core.wsgi import get_wsgi_application

# sys.path.append("/home/sac/my_venv/lib/python3.8/site-packages/")

sys.path.append("/var/www/html/my_dj_tst_project")

# adjust the Python version in the line below as needed 
sys.path.append('/home/sac/my_venv')
sys.path.append('/home/sac/my_venv/lib')
sys.path.append('/home/sac/my_venv/lib/python3.8')
sys.path.append('/home/sac/my_venv/lib/python3.8/site-packagess') 

os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'my_dj_tst.settings')

application = get_wsgi_application()
