From 5624dc541df777495fe56042b44a6ce00bc6710e Mon Sep 17 00:00:00 2001 From: Bartosz Nowicki <116367402+bn-pass@users.noreply.github.com> Date: Mon, 13 Nov 2023 14:05:30 +0100 Subject: [PATCH] move default for the BASE_URL --- config/default.schema.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/config/default.schema.json b/config/default.schema.json index fac7d10ffa0..7be915aaa18 100644 --- a/config/default.schema.json +++ b/config/default.schema.json @@ -1345,7 +1345,6 @@ "properties": { "BASE_URL": { "type": "string", - "default": "http://localhost:4030", "description": "Base URL of the Admin API." }, "API_KEY": { @@ -1353,7 +1352,9 @@ "description": "API key for accessing the Admin API." } }, - "default": {} + "default": { + "BASE_URL": "http://localhost:4030" + } } }, "required": [],