mirror of
https://github.com/jazzband/django-constance.git
synced 2026-05-02 20:54:46 +00:00
8 lines
171 B
Python
8 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()
|