mirror of
https://github.com/Django-LiveView/demo-doom
synced 2026-01-08 06:13:40 +01:00
12 lines
218 B
Python
12 lines
218 B
Python
"""
|
|
WSGI config for vizdoom_liveview project.
|
|
"""
|
|
|
|
import os
|
|
|
|
from django.core.wsgi import get_wsgi_application
|
|
|
|
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "config.settings")
|
|
|
|
application = get_wsgi_application()
|