"""
Entry point cPanel's "Setup Python App" (Phusion Passenger) looks for.
This file must sit at the application's root directory — the same folder
you point the Python App at in cPanel — alongside manage.py.
"""

import sys
import os

sys.path.insert(0, os.path.dirname(__file__))
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'business_platform.settings')

from django.core.wsgi import get_wsgi_application

application = get_wsgi_application()
