Python Galery
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

wsgi.py 385B

12345678910111213141516
  1. """
  2. WSGI config for this project.
  3. It exposes the WSGI callable as a module-level variable named ``application``.
  4. For more information on this file, see
  5. https://docs.djangoproject.com/en/3.0/howto/deployment/wsgi/
  6. """
  7. import os
  8. from django.core.wsgi import get_wsgi_application
  9. os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'main.settings')
  10. application = get_wsgi_application()