3
0
Fork 0
mirror of https://github.com/nanoy42/coope synced 2024-05-07 09:52:24 +00:00
coope/coopeV3/wsgi.py
2018-08-30 18:53:00 +02:00

17 lines
391 B
Python

"""
WSGI config for coopeV3 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/2.1/howto/deployment/wsgi/
"""
import os
from django.core.wsgi import get_wsgi_application
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'coopeV3.settings')
application = get_wsgi_application()