7779544a249575ac1d472f5ab7c0c7c56ac91003 kent Thu Aug 29 16:54:41 2019 -0700 First committed cut of Human Cell Atlas Tracker (HCAT) - a Django based relational database and webworks aimed at helping track progress of projects being imported into the HCA-DCP. diff --git src/hca/hcat/mysite/mysite/wsgi.py src/hca/hcat/mysite/mysite/wsgi.py new file mode 100644 index 0000000..45e28c9 --- /dev/null +++ src/hca/hcat/mysite/mysite/wsgi.py @@ -0,0 +1,16 @@ +""" +WSGI config for mysite 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.2/howto/deployment/wsgi/ +""" + +import os + +from django.core.wsgi import get_wsgi_application + +os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'mysite.settings') + +application = get_wsgi_application()