Files @ 8badb0cb99fa
Branch filter:

Location: symposion_app/pinaxcon/wsgi.py

Clinton Roy
first stab at making a room slot, still not quite there, think i have to make a separate slot for each time slot
import os

os.environ.setdefault("DEBUG", "0")
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "pinaxcon.settings")

from django.core.wsgi import get_wsgi_application  # noqa

from dj_static import Cling, MediaCling  # noqa

application = Cling(MediaCling(get_wsgi_application()))