Skip to content

Instantly share code, notes, and snippets.

@hqingyi
Created February 2, 2016 09:08
Show Gist options
  • Save hqingyi/3f670b072c469c45db3c to your computer and use it in GitHub Desktop.
Save hqingyi/3f670b072c469c45db3c to your computer and use it in GitHub Desktop.
"""
WSGI config for wechat_backend 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.9/howto/deployment/wsgi/
"""
import os
from django.core.wsgi import get_wsgi_application
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "wechat_backend.settings")
application = get_wsgi_application()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment