layerindex-web/rrs/wsgi.py
Aníbal Limón 24998df801 rrs: Add wsgi file for serve with gunicorn
Signed-off-by: Aníbal Limón <anibal.limon@linux.intel.com>
2015-02-24 13:36:19 +00:00

7 lines
159 B
Python

import os
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "settings")
from django.core.wsgi import get_wsgi_application
application = get_wsgi_application()