Files
edx-platform/cms/startup.py
Michael Youngstrom 26b4e30833 Remove django 1.8 shim
2018-06-06 10:34:56 -04:00

20 lines
512 B
Python

"""
Module for code that should run during Studio startup (deprecated)
"""
import django
from django.conf import settings
# Force settings to run so that the python path is modified
settings.INSTALLED_APPS # pylint: disable=pointless-statement
def run():
"""
Executed during django startup
NOTE: DO **NOT** add additional code to this method or this file! The Platform Team
is moving all startup code to more standard locations using Django best practices.
"""
django.setup()