X-Git-Url: https://git.yukkurigames.com/?p=mlpccg-meta.git;a=blobdiff_plain;f=mlpccg-web%2Fwsgi.py;fp=mlpccg-web%2Fwsgi.py;h=05ee4a94c2be606b37bd55fd12aa2fc6eb3b7aa0;hp=0000000000000000000000000000000000000000;hb=f5f267a53e90455937409ad2bd15324e717c8e04;hpb=5d20db255bfeff5d47c0a7fd9aef9839f57f6d77 diff --git a/mlpccg-web/wsgi.py b/mlpccg-web/wsgi.py new file mode 100644 index 0000000..05ee4a9 --- /dev/null +++ b/mlpccg-web/wsgi.py @@ -0,0 +1,14 @@ +""" +WSGI config for mlpccg-web 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.6/howto/deployment/wsgi/ +""" + +import os +os.environ.setdefault("DJANGO_SETTINGS_MODULE", "mlpccg-web.settings") + +from django.core.wsgi import get_wsgi_application +application = get_wsgi_application()