cineclub-site/server/ulm_cine_club_api/wsgi.py

17 lines
411 B
Python
Raw Normal View History

2022-04-03 01:20:53 +02:00
"""
WSGI config for ulm_cine_club_api 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/3.2/howto/deployment/wsgi/
"""
import os
from django.core.wsgi import get_wsgi_application
2022-04-03 01:20:54 +02:00
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "ulm_cine_club_api.settings")
2022-04-03 01:20:53 +02:00
application = get_wsgi_application()