feat: added boilerplate code

This commit is contained in:
ITQ
2025-02-18 23:56:28 +03:00
parent 2a4cf973a9
commit 21fa9a55cc
15 changed files with 927 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
"""ASGI config for AdNova."""
import os
from django.core.asgi import get_asgi_application
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "config.settings")
application = get_asgi_application()