/
eb
/
python_learn
Обзор
Документация
Войти
/
eb
/
python_learn
Код
Запросы
0
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
main
django_projects/myfirstproject_root/myfirstproject/wsgi.py
16 строк
405 B
EvgeniyBudaev
django intro
28 фев 2021, 14:53
28 фев 2021, 14:53
8686621
Код
Авторство
О чём код?
""" WSGI config for myfirstproject 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.1/howto/deployment/wsgi/ """ import os from django.core.wsgi import get_wsgi_application os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'myfirstproject.settings') application = get_wsgi_application()