
import os
import sys

# Add the project directory to the sys.path
sys.path.insert(0, os.path.abspath(os.path.dirname(__file__)))
sys.path.insert(0, '/home/pezaqbcv/developer.pezamw.com/new_phase/peza_api')  # Update this path to your project's directory

# Set the Django settings module
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "peza_api.settings")

# Import and set up the WSGI application
from peza_api.wsgi import application

