import sys
import os

# Adjust the path to the project directory
project_home = '/home/desaplic/proyecto.tuempleadoperfecto.api'
if project_home not in sys.path:
    sys.path.append(project_home)

os.environ['DJANGO_SETTINGS_MODULE'] = 'proyecto.tuempleadoperfecto.api.settings'

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