mirror of
https://github.com/jazzband/django-constance.git
synced 2026-04-02 22:50:24 +00:00
7 lines
171 B
Python
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()
|