bioweb  0.09.92
C++/Python(django)/JavaScript(angularJS) framework
wsgi.py
Go to the documentation of this file.
1 ## @file wsgi.py
2 # @brief Django wsgi interface
3 
4 """
5 Django wsgi interface, internal django file
6 """
7 
8 import os
9 os.environ.setdefault("DJANGO_SETTINGS_MODULE", "config.settings")
10 
11 from django.core.wsgi import get_wsgi_application
12 application = get_wsgi_application()