fix: update ENABLE_USER_SIGN_UP value type in lowcoder template

- Changed the ENABLE_USER_SIGN_UP configuration from a string to a boolean in template.toml for better type consistency.
This commit is contained in:
Mauricio Siu
2025-03-30 01:16:00 -06:00
parent 5a9c5ccaac
commit a14872b61f

View File

@@ -10,7 +10,7 @@ port = 3000
host = "${main_domain}"
[config.env]
ENABLE_USER_SIGN_UP = "false"
ENABLE_USER_SIGN_UP = false
ENCRYPTION_PASSWORD = "${encryption_password}"
ENCRYPTION_SALT = "${encryption_salt}"
CORS_ALLOWED_DOMAINS = "*"