Skip to content

Commit

Permalink
update settings.py
Browse files Browse the repository at this point in the history
  • Loading branch information
mathis2003 committed Mar 9, 2024
1 parent a314769 commit 14cfc02
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions api/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,9 +137,9 @@
STATIC_ROOT = os.path.join(BASE_DIR, 'static/')


CLIENT_ID = os.environ.get('CLIENT_ID') #os.getenv('client_id')
CLIENT_SECRET = os.environ.get('CLIENT_SECRET') #os.getenv('client_secret')
TENANT_ID = os.environ.get('TENANT_ID') #os.getenv('tenant_id')
CLIENT_ID = os.getenv('CLIENT_ID')
CLIENT_SECRET = os.getenv('CLIENT_SCRET')
TENANT_ID = os.getenv('TENANT_ID')

AD_URL = os.environ.get('AD_URL') #os.getenv('ad_url')

Expand Down

0 comments on commit 14cfc02

Please sign in to comment.