Skip to content

Commit

Permalink
Add CALLBACK_BASE_URL to local_settings_container.py
Browse files Browse the repository at this point in the history
  • Loading branch information
karmaking authored Feb 2, 2024
1 parent 5482acb commit 9fa9f9e
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 9fa9f9e

Please sign in to comment.