Initial commit

This commit is contained in:
Dispatcharr 2025-02-18 11:14:09 -06:00
commit 8edb743ebd
1078 changed files with 264296 additions and 0 deletions

8
dispatcharr/wsgi.py Normal file
View file

@ -0,0 +1,8 @@
"""
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()