diff --git a/config.py b/config.py index e236898..df2e76a 100644 --- a/config.py +++ b/config.py @@ -9,7 +9,7 @@ def load_config(mode=os.environ.get('MODE')): return ApplicationConfig elif mode == 'LOCAL': - from settings_dev import ApplicationConfig + from settings_local import ApplicationConfig return ApplicationConfig elif mode == 'DEVELOPMENT': @@ -21,4 +21,4 @@ def load_config(mode=os.environ.get('MODE')): except ImportError: from settings_local import ApplicationConfig - return ApplicationConfig \ No newline at end of file + return ApplicationConfig diff --git a/settings_local.py b/settings_local.py index f43c489..0076cd4 100644 --- a/settings_local.py +++ b/settings_local.py @@ -24,5 +24,7 @@ class ApplicationConfig: "http://192.168.1.204:9613", "http://192.168.1.204:9614", "http://192.168.1.204:9612", + "http://192.168.1.204:9616", "http://192.168.1.204:9611", + "http://192.168.1.204:9511", ] \ No newline at end of file