mirror of
https://github.com/RunLit/Bambu-Run.git
synced 2026-06-22 22:19:03 +01:00
10 lines
227 B
Python
10 lines
227 B
Python
"""WSGI config for Bambu Run standalone deployment."""
|
|
|
|
import os
|
|
|
|
from django.core.wsgi import get_wsgi_application
|
|
|
|
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "standalone.settings")
|
|
|
|
application = get_wsgi_application()
|