1
0
mirror of https://github.com/fspc/workstand.git synced 2025-03-11 01:03:22 -04:00

17 lines
393 B
Python
Raw Normal View History

2016-03-23 16:29:28 -06:00
"""
WSGI config for bikeshop 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/1.9/howto/deployment/wsgi/
"""
import os
from django.core.wsgi import get_wsgi_application
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "bikeshop.settings")
application = get_wsgi_application()