tombola-bde-2020/tombola/wsgi.py

19 lines
437 B
Python
Raw Normal View History

2020-02-29 06:20:47 +00:00
# Copyright (C) 2020 by BDE ENS Paris-Saclay
2020-02-29 05:12:46 +00:00
"""
WSGI config for tombola 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.0/howto/deployment/wsgi/
"""
import os
from django.core.wsgi import get_wsgi_application
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'tombola.settings')
application = get_wsgi_application()