Files
Django-Proxmox-Mikrotik/django_proxmox_mikrotik/asgi.py
Holger Sielaff 90c0ff61ed initial
2025-08-27 09:55:55 +02:00

17 lines
423 B
Python

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