diff options
author | Étienne Loks <etienne@peacefrogs.net> | 2019-07-17 10:42:26 +0200 |
---|---|---|
committer | Étienne Loks <etienne@peacefrogs.net> | 2019-07-17 10:42:26 +0200 |
commit | 68093c0cfa09735f4c6a9b7de0346ac3282730ee (patch) | |
tree | af31ab0e4bd4c589e86ec866000c3bd18700630b /ishtar_public/wsgi.py | |
download | ishtar-pergamon-68093c0cfa09735f4c6a9b7de0346ac3282730ee.tar.bz2 ishtar-pergamon-68093c0cfa09735f4c6a9b7de0346ac3282730ee.zip |
Initial commit
Diffstat (limited to 'ishtar_public/wsgi.py')
-rw-r--r-- | ishtar_public/wsgi.py | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/ishtar_public/wsgi.py b/ishtar_public/wsgi.py new file mode 100644 index 0000000..8b67569 --- /dev/null +++ b/ishtar_public/wsgi.py @@ -0,0 +1,16 @@ +""" +WSGI config for ishtar_public 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/2.2/howto/deployment/wsgi/ +""" + +import os + +from django.core.wsgi import get_wsgi_application + +os.environ.setdefault("DJANGO_SETTINGS_MODULE", "ishtar_public.settings.dev") + +application = get_wsgi_application() |