mirror of
https://github.com/Dispatcharr/Dispatcharr.git
synced 2026-01-23 02:35:14 +00:00
8 lines
215 B
Python
8 lines
215 B
Python
"""
|
|
WSGI config for dispatcharr project.
|
|
"""
|
|
import os
|
|
from django.core.wsgi import get_wsgi_application
|
|
|
|
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'dispatcharr.settings')
|
|
application = get_wsgi_application()
|