Add CALLBACK_BASE_URL to local_settings_container.py

This commit is contained in:
tesobe-daniel 2024-02-02 15:19:06 +01:00 committed by GitHub
parent 5482acb258
commit 9fa9f9e6cd
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__)))