From a12127c3073848a75d19b7032762d7c8921a0c90 Mon Sep 17 00:00:00 2001 From: Shadowfacts Date: Fri, 12 Apr 2024 16:50:58 -0400 Subject: [PATCH] Add APNS things to runtime config --- config/runtime.exs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/config/runtime.exs b/config/runtime.exs index c7809a6..f3f674c 100644 --- a/config/runtime.exs +++ b/config/runtime.exs @@ -82,5 +82,11 @@ if config_env() == :prod do # # Check `Plug.SSL` for all available options in `force_ssl`. + config :tusker_push, :apns, + key_pem: System.fetch_env!("APNS_KEY_PEM"), + key_id: System.fetch_env!("APNS_KEY_ID"), + team_id: System.fetch_env!("APNS_TEAM_ID"), + bundle_id: System.fetch_env!("APNS_BUNDLE_ID") + config :sentry, dsn: System.fetch_env!("SENTRY_DSN") end