import os
import sys

# Your Django project directory
project_home = '/home/itsnotch/bteam11.com/object-detection'

# Add the project to sys.path
if project_home not in sys.path:
    sys.path.insert(0, project_home)

# Django settings module
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'video_detector.settings')

# Load the Django WSGI application
from django.core.wsgi import get_wsgi_application
application = get_wsgi_application()
