mirror of
https://github.com/EDeev/deev.space.git
synced 2026-06-17 13:41:08 +03:00
7 lines
174 B
Python
7 lines
174 B
Python
import os
|
|
|
|
from django.core.wsgi import get_wsgi_application
|
|
|
|
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'dspace.settings')
|
|
|
|
application = get_wsgi_application()
|