This commit is contained in:
Harutyun
2023-05-23 01:09:20 +03:00
parent e4f0ef9af2
commit a6f107781e
252 changed files with 37303 additions and 0 deletions
@@ -0,0 +1,16 @@
"""
WSGI config for mysite 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/4.2/howto/deployment/wsgi/
"""
import os
from django.core.wsgi import get_wsgi_application
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'mysite.settings')
application = get_wsgi_application()