Browse Source

Add wsgi.py

pull/1/head
Hidden Z 11 years ago
parent
commit
7ea817f14a
  1. 8
      pyi2phosts/wsgi.py

8
pyi2phosts/wsgi.py

@ -0,0 +1,8 @@ @@ -0,0 +1,8 @@
import os
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "settings")
# This application object is used by the development server
# as well as any WSGI server configured to use this file.
from django.core.wsgi import get_wsgi_application
application = get_wsgi_application()
Loading…
Cancel
Save