wsgi.py 635 Bytes
Newer Older
1 2 3 4
import os

os.environ.setdefault("DJANGO_SETTINGS_MODULE", "lms.envs.aws")

5 6 7
import lms.startup as startup
startup.run()

8 9 10 11 12
from django.conf import settings
from xmodule.modulestore.django import modulestore

# Trigger a forced initialization of our modulestores since this can take a
# while to complete and we want this done before HTTP requests are accepted.
13 14
for store_name in settings.MODULESTORE:
    modulestore(store_name)
15 16


17 18 19 20 21
# This application object is used by the development server
# as well as any WSGI server configured to use this file.
from django.core.wsgi import get_wsgi_application
application = get_wsgi_application()