From 7715c1fe0d05ebefe0faae08ccc6020d639fcd45 Mon Sep 17 00:00:00 2001 From: Awais Date: Mon, 4 Mar 2024 11:20:25 +0100 Subject: [PATCH] Added google_api_pub_sub base_url config (#186) --- config/releases.exs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/config/releases.exs b/config/releases.exs index d5a4746c..0ae08679 100644 --- a/config/releases.exs +++ b/config/releases.exs @@ -9,6 +9,8 @@ config :postoffice, clean_messages_threshold: {:system, "CLEAN_MESSAGES_THRESHOL config :postoffice, clean_messages_crontab: {:system, "CLEAN_MESSAGES_CRONTAB", default: "0 12 * * 0"} config :postoffice, cluster_name: {:system, "CLUSTER_NAME", default: "postoffice"} +config :google_api_pub_sub, base_url: {:system, "PUBSUB_API_ENDPOINT", default: "https://pubsub.googleapis.com/"} + config :postoffice, Postoffice.Repo, username: {:system, "DB_USERNAME", default: "postgres"}, hostname: {:system, "DB_HOST", default: "db"},