From 99304283f66500be5e2c48b265f564de3cc88ff6 Mon Sep 17 00:00:00 2001 From: Mauricio Siu <47042324+Siumauricio@users.noreply.github.com> Date: Sun, 30 Mar 2025 01:18:59 -0600 Subject: [PATCH] refactor: update configuration structure in lowcoder template - Changed the configuration sections from single entries to arrays for 'domains' and 'env' in template.toml to allow for multiple configurations in the future. --- blueprints/lowcoder/template.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/blueprints/lowcoder/template.toml b/blueprints/lowcoder/template.toml index 18697f8a..156d512c 100644 --- a/blueprints/lowcoder/template.toml +++ b/blueprints/lowcoder/template.toml @@ -4,12 +4,12 @@ encryption_password = "${password:32}" encryption_salt = "${password:32}" api_secret = "${password:32}" -[config.domains] +[[config.domains]] serviceName = "lowcoder-api-service" port = 3000 host = "${main_domain}" -[config.env] +[[config.env]] ENABLE_USER_SIGN_UP = false ENCRYPTION_PASSWORD = "${encryption_password}" ENCRYPTION_SALT = "${encryption_salt}"