/
fgtrwt
/
Python_Django_Learn
Обзор
Документация
Войти
/
fgtrwt
/
Python_Django_Learn
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
src/django_learn/wsgi.py
16 строк
417 B
fgtrwt
upload files
19 авг 2025, 09:23
19 авг 2025, 09:23
589fcc7
Код
Авторство
О чём код?
""" WSGI config for django_learn 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/5.2/howto/deployment/wsgi/ """ import os from django.core.wsgi import get_wsgi_application os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'django_learn.settings') application = get_wsgi_application()