import builtins

# Silence all print statements
def _silent_print(*args, **kwargs):
    pass
builtins.print = _silent_print

import os
import sys

# Absolute path to your project root (where manage.py is)
project_home = '/home/upntpdte/storekeeping'
if project_home not in sys.path:
    sys.path.insert(0, project_home)

# Set the settings module
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'storekeeping.settings')

# Load Django application
from django.core.wsgi import get_wsgi_application
application = get_wsgi_application()