Clarify that we expect things to work on Windows desktop.
[pgweb.git] / pgweb / wsgi.py
blobd8c08487c17f6f5410753bd0b7de3276b2722827
1 """
2 WSGI config for pgweb project.
4 It exposes the WSGI callable as a module-level variable named ``application``.
6 For more information on this file, see
7 https://docs.djangoproject.com/en/1.8/howto/deployment/wsgi/
8 """
10 import os
12 from django.core.wsgi import get_wsgi_application
14 os.environ.setdefault("DJANGO_SETTINGS_MODULE", "pgweb.settings")
16 application = get_wsgi_application()