Brian S. Stephan 180d3f8b6f
rename the test app core from test_project to dr_botzo
the ircbot library expects to be able to load from the dr_botzo package

Signed-off-by: Brian S. Stephan <bss@incorporeal.org>
2024-05-07 00:23:27 -05:00

17 lines
393 B
Python

"""
WSGI config for dr_botzo project.
It exposes the WSGI callable as a module-level variable named ``application``.
For more information on this file, see
https://docs.djangoproject.com/en/5.0/howto/deployment/wsgi/
"""
import os
from django.core.wsgi import get_wsgi_application
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'dr_botzo.settings')
application = get_wsgi_application()