26 lines
852 B
Python
26 lines
852 B
Python
"""
|
|
WSGI config for publichealth 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.8/howto/deployment/wsgi/
|
|
"""
|
|
|
|
import os
|
|
|
|
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "publichealth.settings.production")
|
|
|
|
# Loads environment variables from a .env file if available.
|
|
from dotenv import load_dotenv, find_dotenv
|
|
load_dotenv(find_dotenv())
|
|
|
|
# This application object is used by any WSGI server configured to use this
|
|
# file. This includes Django's development server, if the WSGI_APPLICATION
|
|
# setting points here.
|
|
from django.core.wsgi import get_wsgi_application
|
|
application = get_wsgi_application()
|
|
|
|
# Apply WSGI middleware here.
|
|
# from helloworld.wsgi import HelloWorldApplication
|
|
# application = HelloWorldApplication(application)
|