Skip to content

Commit

Permalink
Merge pull request #353 from OpenBankProject/develop
Browse files Browse the repository at this point in the history
Add CALLBACK_BASE_URL to local_settings_container.py
  • Loading branch information
karmaking authored Feb 4, 2024
2 parents a9497f2 + 9fa9f9e commit 330f1bc
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/local_settings_container.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@
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__)))
Expand Down

0 comments on commit 330f1bc

Please sign in to comment.