import os
import sys

# Full path to your project root (where manage.py is located)
project_home = '/home/bambang/portfolio'
if project_home not in sys.path:
    sys.path.insert(0, project_home)

# Set the Django settings module
os.environ['DJANGO_SETTINGS_MODULE'] = 'portfolio.settings'

# Import and create WSGI application
from django.core.wsgi import get_wsgi_application
application = get_wsgi_application()
