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

17 lines
423 B
Python

"""
WSGI config for django_proxmox_mikrotik project.
It exposes the WSGI callable as a module-level variable named ``application``.
For more information on this file, see
https://docs.djangoproject.com/en/5.2/howto/deployment/wsgi/
"""
import os
from django.core.wsgi import get_wsgi_application
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'django_proxmox_mikrotik.settings')
application = get_wsgi_application()