X-Git-Url: https://code.kerkeslager.com/?p=bigly;a=blobdiff_plain;f=src%2Fbigly%2Fwsgi.py;fp=src%2Fbigly%2Fwsgi.py;h=f6ffa75b2dc6b281b8bcb78cdb18f7a6a03328aa;hp=0000000000000000000000000000000000000000;hb=c2f61845f8372b4796bf4d10da7f57f99ee933c7;hpb=747322073bd51466bf220a256fbb9a3e157cf0c9 diff --git a/src/bigly/wsgi.py b/src/bigly/wsgi.py new file mode 100644 index 0000000..f6ffa75 --- /dev/null +++ b/src/bigly/wsgi.py @@ -0,0 +1,16 @@ +""" +WSGI config for bigly 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/3.2/howto/deployment/wsgi/ +""" + +import os + +from django.core.wsgi import get_wsgi_application + +os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'bigly.settings') + +application = get_wsgi_application()