summaryrefslogtreecommitdiff
path: root/pergamon/wsgi.py
diff options
context:
space:
mode:
authorÉtienne Loks <etienne@peacefrogs.net>2019-08-26 13:19:42 +0200
committerÉtienne Loks <etienne@peacefrogs.net>2019-08-26 13:19:42 +0200
commit55e0894e41c06d33072e5d161ca5135ded5cdc6b (patch)
tree8337a1550238691fe2be6a797069bab9ea0fcb72 /pergamon/wsgi.py
parent87b2f787b3305984c60c658bd0754cb65107a596 (diff)
downloadishtar-pergamon-55e0894e41c06d33072e5d161ca5135ded5cdc6b.tar.bz2
ishtar-pergamon-55e0894e41c06d33072e5d161ca5135ded5cdc6b.zip
ishtar_public -> pergamon
Diffstat (limited to 'pergamon/wsgi.py')
-rw-r--r--pergamon/wsgi.py16
1 files changed, 16 insertions, 0 deletions
diff --git a/pergamon/wsgi.py b/pergamon/wsgi.py
new file mode 100644
index 0000000..b4caa50
--- /dev/null
+++ b/pergamon/wsgi.py
@@ -0,0 +1,16 @@
+"""
+WSGI config for ishtar pergamon 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", "pergamon.settings.dev")
+
+application = get_wsgi_application()