fixes for docker local

This commit is contained in:
2025-11-03 20:55:13 -05:00
parent d2cfe29daa
commit 57414e8ad5
2 changed files with 6 additions and 1 deletions

View File

@@ -6,6 +6,8 @@ sys.path.insert(0, os.path.join(os.path.dirname(__file__), '..'))
mode = os.environ.get('MODE', 'DEVELOPMENT').upper()
if mode == 'PRODUCTION':
from settings_prod import settings
elif mode == 'LOCAL':
from settings_local import settings
else:
from settings_dev import settings

View File

@@ -31,8 +31,11 @@ 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",
]
# VoIP.ms Credentials and Settings
voipms_api_username = os.environ.get('VOIPMS_API_USERNAME')