This commit is contained in:
2024-05-09 17:20:16 +03:00
parent c1b3101de6
commit 9a5f895b93
28 changed files with 908 additions and 0 deletions

4
config/wsgi.py Normal file
View File

@@ -0,0 +1,4 @@
import os
from django.core.wsgi import get_wsgi_application
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'config.settings')
application = get_wsgi_application()