django-constance/example/cheeseshop/wsgi.py
2024-07-03 19:21:33 +05: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()