Initial commit

This commit is contained in:
tinytools
2025-09-11 02:11:44 +02:00
commit 565ef0cad1
15 changed files with 1665 additions and 0 deletions

16
django_project/asgi.py Normal file
View File

@@ -0,0 +1,16 @@
"""
ASGI config for django_project project.
It exposes the ASGI callable as a module-level variable named ``application``.
For more information on this file, see
https://docs.djangoproject.com/en/5.2/howto/deployment/asgi/
"""
import os
from django.core.asgi import get_asgi_application
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'django_project.settings')
application = get_asgi_application()