/
mialdr
/
python_django
Обзор
Документация
Войти
/
mialdr
/
python_django
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
07_DjangoAuthentication/djauth/wsgi.py
16 строк
389 B
Skillbox
Add lesson
25 янв 2023, 05:30
25 янв 2023, 05:30
7bf8fa9
Код
Авторство
О чём код?
""" WSGI config for djauth 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/3.0/howto/deployment/wsgi/ """ import os from django.core.wsgi import get_wsgi_application os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'djauth.settings') application = get_wsgi_application()