File tree 6 files changed +6
-108
lines changed
6 files changed +6
-108
lines changed Original file line number Diff line number Diff line change @@ -57,6 +57,7 @@ services:
57
57
# - on linux/mac, generate one eg. with: head /dev/urandom | head -c 30 | shasum -a 256
58
58
#
59
59
LOWCODER_API_KEY_SECRET : " 5a41b090758b39b226603177ef48d73ae9839dd458ccb7e66f7e7cc028d5a50b"
60
+ COMMON_WORKSPACE_MODE : SAAS
60
61
restart : unless-stopped
61
62
depends_on :
62
63
- mongodb
Original file line number Diff line number Diff line change @@ -50,6 +50,7 @@ services:
50
50
# frontend parameters
51
51
LOWCODER_MAX_REQUEST_SIZE : 20m
52
52
LOWCODER_MAX_QUERY_TIMEOUT : 120
53
+ COMMON_WORKSPACE_MODE : SAAS
53
54
volumes :
54
55
- ./lowcoder-stacks:/lowcoder-stacks
55
56
- ./lowcoder-stacks/assets:/lowcoder/assets
Original file line number Diff line number Diff line change @@ -42,6 +42,7 @@ $ helm delete -n lowcoder my-lowcoder
42
42
43
43
| Name | Description | Value |
44
44
| --------------------------------------- | --------------------------------------------------------------------------------- | -------------- |
45
+ | ` global.config.workspaceMode ` | Sets the workspace mode. Possible types are: SAAS, ENTERPRISE | ` SAAS ` |
45
46
| ` global.config.userId ` | User ID of user running Lowcoder server application in container | ` 9001 ` |
46
47
| ` global.config.groupId ` | Group ID of user running Lowcoder server application in container | ` 9001 ` |
47
48
| ` global.config.corsAllowedDomains ` | CORS allowed domains | ` * ` |
Original file line number Diff line number Diff line change 32
32
DEFAULT_ORG_GROUP_COUNT : {{ .Values.global.defaults.maxGroupsPerOrg | default "100" | quote }}
33
33
DEFAULT_ORG_APP_COUNT : {{ .Values.global.defaults.maxAppsPerOrg | default "1000" | quote }}
34
34
DEFAULT_DEVELOPER_COUNT : {{ .Values.global.defaults.maxDevelopers | default "50" | quote }}
35
-
35
+ COMMON_WORKSPACE_MODE : {{ .Values.global.config.workspaceMode | default "SAAS" | quote }}
Original file line number Diff line number Diff line change @@ -11,6 +11,8 @@ fullnameOverride: ""
11
11
#
12
12
global :
13
13
config :
14
+ # This setting sets workspace mode. Possible values: SAAS, ENTERPRISE
15
+ workspaceMode : SAAS
14
16
# ID of user and group runnning the service within the container
15
17
userId : 9001
16
18
groupId : 9001
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments