chore: django init

This commit is contained in:
eneller
2025-03-09 21:41:38 +01:00
parent 2cb8f095bc
commit c95084cecb
9 changed files with 622 additions and 9 deletions

16
src/epub2go_web/asgi.py Normal file
View File

@@ -0,0 +1,16 @@
"""
ASGI config for epub2go_web 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.1/howto/deployment/asgi/
"""
import os
from django.core.asgi import get_asgi_application
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "epub2go_web.settings")
application = get_asgi_application()