6 lines
171 B
Python
6 lines
171 B
Python
|
import os
|
||
|
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "provider_app.settings")
|
||
|
|
||
|
from django.core.wsgi import get_wsgi_application
|
||
|
application = get_wsgi_application()
|