Skip to content

Commit 59e9869

Browse files
author
FalkWolsky
committed
Updated App Descriptor
1 parent 1915747 commit 59e9869

File tree

1 file changed

+51
-11
lines changed

1 file changed

+51
-11
lines changed

app.json

Lines changed: 51 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@
1010
"Fast Application Development",
1111
"Rapid development",
1212
"Collaboration tool",
13-
"Video conferencing"
13+
"Video conferencing",
14+
"AI User Interface"
1415
],
1516
"stack": "container",
1617
"formation": {
@@ -22,11 +23,11 @@
2223
"env": {
2324
"LOWCODER_DB_ENCRYPTION_PASSWORD": {
2425
"description": "The encryption password used to encrypt all sensitive credentials in the database. You can use any random string (eg abcd).",
25-
"required": false
26+
"required": true
2627
},
2728
"LOWCODER_DB_ENCRYPTION_SALT": {
2829
"description": "The encryption salt used to encrypt all sensitive credentials in the database. You can use any random string (eg abcd).",
29-
"required": false
30+
"required": true
3031
},
3132
"LOWCODER_CORS_DOMAINS": {
3233
"description": "The domains supported for CORS requests. All domains are allowed by default. If there are multiple domains, please separate them with commas.",
@@ -61,12 +62,12 @@
6162
"required": false
6263
},
6364
"LOWCODER_API_SERVICE_URL": {
64-
"description": "Lowcoder API service URL",
65+
"description": "Lowcoder API service URL (main backend) - for multi-docker image installations.",
6566
"value": "http://localhost:8080",
6667
"required": false
6768
},
6869
"LOWCODER_NODE_SERVICE_URL": {
69-
"description": "Lowcoder Node service (js executor) URL",
70+
"description": "Lowcoder Node Service URL (data execution server) - for multi-docker image installations",
7071
"value": "http://localhost:6060",
7172
"required": false
7273
},
@@ -96,9 +97,9 @@
9697
"required": false
9798
},
9899
"LOWCODER_WORKSPACE_MODE": {
99-
"description": "SAAS to activate, ENTERPRISE to switch off - Workspaces",
100+
"description": "SAAS (MULTIWORKSPACE) to activate, SINGLEWORKSPACE (ENTERPRISE) to switch off - Workspaces",
100101
"value": "SAAS",
101-
"required": false
102+
"required": true
102103
},
103104
"LOWCODER_EMAIL_SIGNUP_ENABLED": {
104105
"description": "Control if users create their own Workspace automatic when Sign Up",
@@ -118,16 +119,16 @@
118119
"LOWCODER_SUPERUSER_USERNAME": {
119120
"description": "Username of the Super-User of an Lowcoder Installation",
120121
"value": "admin@localhost",
121-
"required": false
122+
"required": true
122123
},
123124
"LOWCODER_SUPERUSER_PASSWORD": {
124125
"description": "Password of the Super-User, if not present or empty, it will be generated",
125126
"value": "`generated and printed into log file",
126-
"required": false
127+
"required": true
127128
},
128129
"LOWCODER_API_KEY_SECRET": {
129130
"description": "String to encrypt/sign API Keys that users may create",
130-
"required": false
131+
"required": true
131132
},
132133
"LOWCODER_ADMIN_SMTP_HOST": {
133134
"description": "SMTP Hostname of your Mail Relay Server",
@@ -170,6 +171,45 @@
170171
"description": "\"from\" Email address of the password Reset Email Sender",
171172
"value": "[email protected]",
172173
"required": false
174+
},
175+
"LOWCODER_REDIS_ENABLED": {
176+
"description": "If true redis server is started in the single docker image container",
177+
"required": true
178+
},
179+
"LOWCODER_MONGODB_ENABLED": {
180+
"description": "If true mongo database is started in the single docker image container",
181+
"required": true
182+
},
183+
"LOWCODER_MONGODB_EXPOSED": {
184+
"description": "If true mongo database accept connections from outside the docker in the single docker image container",
185+
"required": false
186+
},
187+
"LOWCODER_API_SERVICE_ENABLED": {
188+
"description": "If true lowcoder api-service is started in the container",
189+
"required": false
190+
},
191+
"LOWCODER_NODE_SERVICE_ENABLED": {
192+
"description": "If true lowcoder node-service is started in the container",
193+
"required": false
194+
},
195+
"LOWCODER_FRONTEND_ENABLED": {
196+
"description": "If true lowcoder web frontend is started in the container",
197+
"required": false
198+
},
199+
"LOWCODER_PUID": {
200+
"description": "ID of user running services. It will own all created logs and data.",
201+
"value": "9001",
202+
"required": false
203+
},
204+
"LOWCODER_PGID": {
205+
"description": "ID of group of the user running services.",
206+
"value": "9001",
207+
"required": false
208+
},
209+
"LOWCODER_PUBLIC_URL": {
210+
"description": "The URL of the public User Interface",
211+
"value": "localhost:3000",
212+
"required": false
173213
}
174-
}
214+
}
175215
}

0 commit comments

Comments
 (0)