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

import os
import sys

# Add the virtual environment site-packages to the path
sys.path.append('/home/md5empresas/validfirma.md5empresas.com/myenv311/lib/python3.11/site-packages')
sys.path.append('/home/md5empresas/validfirma.md5empresas.com/Validfirma')

#Set the settings module
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'config.settings')

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