Add wsgi file

This commit is contained in:
Martin Pépin 2020-05-09 17:03:29 +02:00
parent 0d8c97dbf7
commit 586df45a2f
No known key found for this signature in database
GPG key ID: E7520278B1774448

6
cof/wsgi.py Normal file
View file

@ -0,0 +1,6 @@
import os
from django.core.wsgi import get_wsgi_application
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "cof.settings.bds_prod")
application = get_wsgi_application()