Skip to content

Commit

Permalink
chore: add default value for new env var
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewleith committed Nov 7, 2023
1 parent 3930eb1 commit 0bc2085
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions app/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -644,6 +644,7 @@ class Development(Config):
ADMIN_CLIENT_SECRET = os.getenv("ADMIN_CLIENT_SECRET", "dev-notify-secret-key")
SECRET_KEY = env.list("SECRET_KEY", ["dev-notify-secret-key"])
DANGEROUS_SALT = os.getenv("DANGEROUS_SALT", "dev-notify-salt ")
SRE_CLIENT_SECRET = os.getenv("SRE_CLIENT_SECRET", "dev-notify-secret-key")

NOTIFY_ENVIRONMENT = "development"
NOTIFICATION_QUEUE_PREFIX = os.getenv("NOTIFICATION_QUEUE_PREFIX", "notification-canada-ca")
Expand Down

0 comments on commit 0bc2085

Please sign in to comment.