common/tcommon/wsgi.py

7 lines
167 B
Python
Raw Normal View History

2024-12-20 21:18:31 -05:00
import os
from django.core.wsgi import get_wsgi_application
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "tcommon.settings")
application = get_wsgi_application()