Skip to content

Commit

Permalink
Rejson env var
Browse files Browse the repository at this point in the history
  • Loading branch information
faucomte97 committed Apr 3, 2024
1 parent 0a8588f commit 526c4fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion django_site/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
DOTMAILER_PASSWORD = os.getenv("DOTMAILER_PASSWORD", "")
DOTMAILER_DEFAULT_PREFERENCES = json.loads(os.getenv("DOTMAILER_DEFAULT_PREFERENCES", "[]") or "[]")

APPENGINE_SERVICE_ACCOUNT_CREDENTIALS = os.getenv("APPENGINE_SERVICE_ACCOUNT_CREDENTIALS", "[]")
APPENGINE_SERVICE_ACCOUNT_CREDENTIALS = json.loads(os.getenv("APPENGINE_SERVICE_ACCOUNT_CREDENTIALS", "[]") or "[]")
GCP_KMS_URI = os.getenv("GCP_KMS_URI", "")

REACT_APP_KURONO_BADGES_URL = os.getenv(
Expand Down

0 comments on commit 526c4fd

Please sign in to comment.