|
10 | 10 | "Fast Application Development",
|
11 | 11 | "Rapid development",
|
12 | 12 | "Collaboration tool",
|
13 |
| - "Video conferencing" |
| 13 | + "Video conferencing", |
| 14 | + "AI User Interface" |
14 | 15 | ],
|
15 | 16 | "stack": "container",
|
16 | 17 | "formation": {
|
|
22 | 23 | "env": {
|
23 | 24 | "LOWCODER_DB_ENCRYPTION_PASSWORD": {
|
24 | 25 | "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 |
26 | 27 | },
|
27 | 28 | "LOWCODER_DB_ENCRYPTION_SALT": {
|
28 | 29 | "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 |
30 | 31 | },
|
31 | 32 | "LOWCODER_CORS_DOMAINS": {
|
32 | 33 | "description": "The domains supported for CORS requests. All domains are allowed by default. If there are multiple domains, please separate them with commas.",
|
|
61 | 62 | "required": false
|
62 | 63 | },
|
63 | 64 | "LOWCODER_API_SERVICE_URL": {
|
64 |
| - "description": "Lowcoder API service URL", |
| 65 | + "description": "Lowcoder API service URL (main backend) - for multi-docker image installations.", |
65 | 66 | "value": "http://localhost:8080",
|
66 | 67 | "required": false
|
67 | 68 | },
|
68 | 69 | "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", |
70 | 71 | "value": "http://localhost:6060",
|
71 | 72 | "required": false
|
72 | 73 | },
|
|
96 | 97 | "required": false
|
97 | 98 | },
|
98 | 99 | "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", |
100 | 101 | "value": "SAAS",
|
101 |
| - "required": false |
| 102 | + "required": true |
102 | 103 | },
|
103 | 104 | "LOWCODER_EMAIL_SIGNUP_ENABLED": {
|
104 | 105 | "description": "Control if users create their own Workspace automatic when Sign Up",
|
|
118 | 119 | "LOWCODER_SUPERUSER_USERNAME": {
|
119 | 120 | "description": "Username of the Super-User of an Lowcoder Installation",
|
120 | 121 | "value": "admin@localhost",
|
121 |
| - "required": false |
| 122 | + "required": true |
122 | 123 | },
|
123 | 124 | "LOWCODER_SUPERUSER_PASSWORD": {
|
124 | 125 | "description": "Password of the Super-User, if not present or empty, it will be generated",
|
125 | 126 | "value": "`generated and printed into log file",
|
126 |
| - "required": false |
| 127 | + "required": true |
127 | 128 | },
|
128 | 129 | "LOWCODER_API_KEY_SECRET": {
|
129 | 130 | "description": "String to encrypt/sign API Keys that users may create",
|
130 |
| - "required": false |
| 131 | + "required": true |
131 | 132 | },
|
132 | 133 | "LOWCODER_ADMIN_SMTP_HOST": {
|
133 | 134 | "description": "SMTP Hostname of your Mail Relay Server",
|
|
170 | 171 | "description": "\"from\" Email address of the password Reset Email Sender",
|
171 | 172 |
|
172 | 173 | "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 |
173 | 213 | }
|
174 |
| - } |
| 214 | + } |
175 | 215 | }
|
0 commit comments