movie-night-api/movienight/wsgi.py

17 lines
397 B
Python
Raw Normal View History

2025-03-30 00:57:14 -05:00
"""
2025-04-07 00:30:11 -05:00
WSGI config for movienight project.
2025-03-30 00:57:14 -05:00
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.1/howto/deployment/wsgi/
"""
import os
from django.core.wsgi import get_wsgi_application
2025-04-07 00:30:11 -05:00
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'movienight.settings')
2025-03-30 00:57:14 -05:00
application = get_wsgi_application()