This commit is contained in:
juanjo
2026-04-11 19:07:22 +02:00
parent 781bb216a3
commit 7e1755ded0
2 changed files with 11 additions and 0 deletions

4
core/asgi.py Normal file
View File

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