Skip to content

Commit

Permalink
Use getenv instead of environ
Browse files Browse the repository at this point in the history
  • Loading branch information
faucomte97 committed Apr 9, 2024
1 parent 17fe2c8 commit 898d140
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 @@ -38,7 +38,7 @@
DOTMAILER_USER = os.getenv("DOTMAILER_USER", "")
DOTMAILER_PASSWORD = os.getenv("DOTMAILER_PASSWORD", "")
DOTMAILER_DEFAULT_PREFERENCES = json.loads(os.getenv("DOTMAILER_DEFAULT_PREFERENCES", "[]") or "[]")
DOTDIGITAL_AUTH = os.environ["DOTDIGITAL_AUTH"]
DOTDIGITAL_AUTH = os.getenv("DOTDIGITAL_AUTH", "")

REACT_APP_KURONO_BADGES_URL = os.getenv(
"REACT_APP_KURONO_BADGES_URL", "https://development-kurono-badges-dot-decent-digit-629.appspot.com"
Expand Down

0 comments on commit 898d140

Please sign in to comment.