第一个版本

This commit is contained in:
2025-07-31 21:21:45 +08:00
commit 7792734fb0
31 changed files with 662 additions and 0 deletions

16
statuspage/asgi.py Normal file
View File

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