server/src/wsgi.py
author ymh <ymh.work@gmail.com>
Sat, 06 Jun 2015 22:47:54 +0200
changeset 118 fea47f1054e2
parent 117 41a78460bdac
permissions -rw-r--r--
prepare for server install, mv settings, add setup, correct various problems

"""
WSGI config for ammico 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.7/howto/deployment/wsgi/
"""

import os
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "settings")

from django.core.wsgi import get_wsgi_application
application = get_wsgi_application()