You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

wsgi.py 640B

12345678910111213141516
  1. # isort:skip
  2. import os
  3. os.environ.setdefault("DJANGO_SETTINGS_MODULE", "settings")
  4. print("WSGI~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~1")
  5. print("WSGI~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~2")
  6. print("WSGI~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~3")
  7. os.environ.setdefault("DJANGO_SETTINGS_MODULE", "sandbox.settings")
  8. from django.core.wsgi import get_wsgi_application # isort:skip
  9. application = get_wsgi_application()