django-constance/example/cheeseshop/wsgi.py

8 lines
171 B
Python
Raw Normal View History

2016-09-26 07:53:36 +00:00
import os
from django.core.wsgi import get_wsgi_application
2025-10-07 09:25:07 +00:00
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "cheeseshop.settings")
2016-09-26 07:53:36 +00:00
application = get_wsgi_application()