Initial commit

This commit is contained in:
Andrey Golovizin 2020-01-19 15:58:54 +01:00
commit 02ad5fed3d
17 changed files with 1232 additions and 0 deletions

16
mysite/wsgi.py Normal file
View file

@ -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/2.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()