ioe/inventory/wsgi.py
hunterzhang 84a74aa0cf Revert "Merge pull request #2 from homestoo/main"
This reverts commit a0ea6a76d9, reversing
changes made to 2233b6d527.
2025-04-02 10:54:06 +08:00

17 lines
411 B
Python

"""
WSGI config for inventory 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/4.2/howto/deployment/wsgi/
"""
import os
from django.core.wsgi import get_wsgi_application
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'inventory.settings')
application = get_wsgi_application()