Skip to content

Commit

Permalink
chore: use hardcoded default value for email contact form recipient
Browse files Browse the repository at this point in the history
- Hardly an ideal workaround, but minimizes effort required for CI and deployment
  • Loading branch information
arcanemachine committed Sep 26, 2023
1 parent e2f0843 commit 92b533d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion config/runtime.exs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ import Config

# project
config :quiz_game,
email_recipient_contact_form: System.fetch_env!("EMAIL_RECIPIENT_CONTACT_FORM")
email_recipient_contact_form:
System.get_env("EMAIL_RECIPIENT_CONTACT_FORM", "[email protected]")

# hcaptcha
config :hcaptcha,
Expand Down

0 comments on commit 92b533d

Please sign in to comment.