""" Specify the other settings files to load. """

try:
    from .environment_overrides.active import *
except ImportError:
    from .environment_overrides.development import *
# If we want to get more involved, this page is a useful discussion:
#   https://code.djangoproject.com/wiki/SplitSettings

# Local overrides go last so they have top priority
try:
    from .local import *
except ImportError:
    pass
