From b7f7902e0c793eca6bbcee2623f512d7b2cbbb72 Mon Sep 17 00:00:00 2001 From: Diptesh Choudhuri Date: Tue, 21 Jan 2025 23:01:09 +0530 Subject: [PATCH] chore(config): change the default value of the frontend url --- crates/config/src/lib.rs | 2 +- docs/includes/backend-config-schema.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/config/src/lib.rs b/crates/config/src/lib.rs index 529d21bf4c..e381b230e3 100644 --- a/crates/config/src/lib.rs +++ b/crates/config/src/lib.rs @@ -294,7 +294,7 @@ pub struct FrontendUmamiConfig { #[config(rename_all = "snake_case", env_prefix = "FRONTEND_")] pub struct FrontendConfig { /// Used as the base URL when generating item links for the frontend. - #[setting(default = "https://pro.ryot.io")] + #[setting(default = "https://app.ryot.io")] pub url: String, /// The button label for OIDC authentication. #[setting(default = "Continue with OpenID Connect")] diff --git a/docs/includes/backend-config-schema.yaml b/docs/includes/backend-config-schema.yaml index 1078723498..42c75c8ee4 100644 --- a/docs/includes/backend-config-schema.yaml +++ b/docs/includes/backend-config-schema.yaml @@ -109,7 +109,7 @@ frontend: # Used as the base URL when generating item links for the frontend. # @envvar FRONTEND_URL - url: "https://pro.ryot.io" + url: "https://app.ryot.io" # Settings related to external integrations. integration: