astara-appliance/astara_router/settings.py

14 lines
418 B
Python

# Configures which advanced service drivers are loaded by this
# instance of the appliance.
ENABLED_SERVICES = ['router']
# If astara_local_settings.py is located in your python path,
# it can be used to override the defaults. DIB will install this
# into /usr/local/share/astara and append that path to the gunicorn's
# python path.
try:
from astara_local_settings import * # noqa
except ImportError:
pass