django-constance/example/cheeseshop/wsgi.py
2025-10-07 11:26:18 +02:00

7 lines
171 B
Python

import os
from django.core.wsgi import get_wsgi_application
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "cheeseshop.settings")
application = get_wsgi_application()