1
0
mirror of https://github.com/MarkParker5/STARK.git synced 2025-07-02 22:36:54 +02:00
Files
STARK/Controls/Django/Main/wsgi.py

8 lines
167 B
Python
Raw Normal View History

2022-04-14 22:57:55 +02:00
import os
from django.core.wsgi import get_wsgi_application
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'Django.settings')
application = get_wsgi_application()