carom-server/caromserver/wsgi.py

17 lines
399 B
Python
Raw Permalink Normal View History

2017-01-03 18:57:11 +01:00
"""
WSGI config for caromserver project.
It exposes the WSGI callable as a module-level variable named ``application``.
For more information on this file, see
2021-10-24 10:33:26 +02:00
https://docs.djangoproject.com/en/3.2/howto/deployment/wsgi/
2017-01-03 18:57:11 +01:00
"""
import os
from django.core.wsgi import get_wsgi_application
2021-10-24 10:33:26 +02:00
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'caromserver.settings')
2017-01-03 18:57:11 +01:00
application = get_wsgi_application()