startup.py 321 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10
"""
Module with code executed during Studio startup
"""
from django.conf import settings

# Force settings to run so that the python path is modified
settings.INSTALLED_APPS  # pylint: disable=W0104

from django_startup import autostartup

Calen Pennington committed
11

12 13 14 15 16
def run():
    """
    Executed during django startup
    """
    autostartup()