i701 9c975944b8
All checks were successful
Build and Push Docker Images / Build and Push Docker Images (push) Successful in 3m31s
Refactor Django settings module and environment configuration
- Move settings to a modular configuration structure
- Update environment variables in .env.example
- Modify DJANGO_SETTINGS_MODULE references across project files
- Simplify and standardize environment variable naming
2025-03-03 22:11:13 +05:00

17 lines
395 B
Python

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