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 188B

123456789
  1. # isort:skip
  2. import os
  3. os.environ.setdefault("DJANGO_SETTINGS_MODULE", "settings")
  4. from django.core.wsgi import get_wsgi_application # isort:skip
  5. application = get_wsgi_application()