Merge pull request #353 from OpenBankProject/develop

Add CALLBACK_BASE_URL to local_settings_container.py
This commit is contained in:
tesobe-daniel 2024-02-04 20:59:50 +01:00 committed by GitHub
commit 330f1bc5f5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -16,6 +16,8 @@ if os.getenv('API_HOST'):
API_HOST = os.getenv('API_HOST')
if os.getenv('API_PORTAL'):
API_PORTAL = os.getenv('API_PORTAL')
if os.getenv('CALLBACK_BASE_URL'):
CALLBACK_BASE_URL = os.getenv('CALLBACK_BASE_URL')
if os.getenv('ALLOWED_HOSTS'):
ALLOWED_HOSTS = os.getenv('ALLOWED_HOSTS').split(',')
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))