
Make defaults can be override by local settings, it is useful because users might use non-standard SSH ports and so on. Change-Id: Ic30e611f73ce844848efb452b53f86242be9219d
11 lines
340 B
Python
11 lines
340 B
Python
from astara_router.defaults import * # noqa
|
|
|
|
# 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
|