From f1697463894c38792ca06eea249910fb1502cbe4 Mon Sep 17 00:00:00 2001 From: Jamil Date: Wed, 30 Jul 2025 17:16:24 -0400 Subject: [PATCH] chore(portal): use local website url for versions in dev (#10057) When starting a local client with a local portal, this URL is hit and times out, causing noise in the local gateway log. In order to develop against this API in local dev, it might be better to use the local website URL as well. --- elixir/config/dev.exs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/elixir/config/dev.exs b/elixir/config/dev.exs index f2e4f4d31..11c24c9b3 100644 --- a/elixir/config/dev.exs +++ b/elixir/config/dev.exs @@ -15,6 +15,9 @@ config :domain, outbound_email_adapter_configured?: true config :domain, run_manual_migrations: true +config :domain, Domain.ComponentVersions, + firezone_releases_url: "http://localhost:3000/api/releases" + config :domain, Domain.Billing, enabled: System.get_env("BILLING_ENABLED", "false") == "true", secret_key: System.get_env("STRIPE_SECRET_KEY", "sk_dev_1111"),