···11+"""
22+ASGI config for django_litestream_playground project.
33+44+It exposes the ASGI callable as a module-level variable named ``application``.
55+66+For more information on this file, see
77+https://docs.djangoproject.com/en/5.1/howto/deployment/asgi/
88+"""
99+1010+import os
1111+1212+from django.core.asgi import get_asgi_application
1313+1414+os.environ.setdefault("DJANGO_SETTINGS_MODULE", "django_litestream_playground.settings")
1515+1616+application = get_asgi_application()
···11+"""
22+WSGI config for django_litestream_playground project.
33+44+It exposes the WSGI callable as a module-level variable named ``application``.
55+66+For more information on this file, see
77+https://docs.djangoproject.com/en/5.1/howto/deployment/wsgi/
88+"""
99+1010+import os
1111+1212+from django.core.wsgi import get_wsgi_application
1313+1414+os.environ.setdefault("DJANGO_SETTINGS_MODULE", "django_litestream_playground.settings")
1515+1616+application = get_wsgi_application()