site-musique/site_musique/wsgi.py

17 lines
406 B
Python
Raw Permalink Normal View History

2019-09-01 12:13:50 +02:00
"""
WSGI config for site_musique 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/1.11/howto/deployment/wsgi/
"""
import os
from django.core.wsgi import get_wsgi_application
2019-09-22 12:46:10 +02:00
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "site_musique.settings.dev")
2019-09-01 12:13:50 +02:00
application = get_wsgi_application()