mirror of
https://github.com/Microsoft/sql-server-samples.git
synced 2025-12-08 14:58:54 +00:00
10 lines
260 B
Python
10 lines
260 B
Python
import os
|
|
from django.core.wsgi import get_wsgi_application
|
|
from whitenoise.django import DjangoWhiteNoise
|
|
|
|
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "bootcamp.settings")
|
|
|
|
application = get_wsgi_application()
|
|
application = DjangoWhiteNoise(application)
|
|
|