From 168ff3999c97ab6bc58ed17fe2211c47d4c034e2 Mon Sep 17 00:00:00 2001 From: Jonathan Gotti Date: Mon, 24 Mar 2025 01:18:15 +0100 Subject: [PATCH] Create template.yml --- blueprints/lowcoder/template.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 blueprints/lowcoder/template.yml diff --git a/blueprints/lowcoder/template.yml b/blueprints/lowcoder/template.yml new file mode 100644 index 0000000..d0b36ba --- /dev/null +++ b/blueprints/lowcoder/template.yml @@ -0,0 +1,20 @@ +variables: + main_domain: ${domain} + encryption_password: ${password:32} + encryption_salt: ${password:32} + api_secret: ${password:32} + +config: + domains: + - serviceName: lowcoder-api-service + port: 3000 + host: ${main_domain} + + env: + ENABLE_USER_SIGN_UP: false + ENCRYPTION_PASSWORD: ${encryption_password} + ENCRYPTION_SALT: ${encryption_salt} + CORS_ALLOWED_DOMAINS: "*" + LOWCODER_API_KEY_SECRET: ${api_secret} + + mounts: []