Skip to content

Commit 5358d9e

Browse files
author
FalkWolsky
committed
Improved Documentation
1 parent c02d325 commit 5358d9e

File tree

5 files changed

+11
-8
lines changed

5 files changed

+11
-8
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ You can access Lowcoder from [cloud-hosted version](https://app.lowcoder.cloud/)
9090
## 💪 Contributing
9191
- Language support: If you have experience with a language that isn't currently supported by our product, send us a pull request.
9292
- Create and share components or demos: If you've created something that might be useful to others, add the link here.
93-
- [Frontend contributing guide](https://github.com/lowcoder-org/lowcoder/tree/develop/client)
93+
- [Frontend contributing guide](https://github.com/lowcoder-org/lowcoder/tree/main/client)
9494

9595
## 🥇 Sponsors
9696
Accelerate the growth of Lowcoder and unleash its potential with your Sponsorship – together, we're shaping the future of Lowcode for everyone!

client/packages/lowcoder-sdk/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "lowcoder-sdk",
3-
"version": "2.1.8",
3+
"version": "2.1.9",
44
"type": "module",
55
"files": [
66
"src",

client/packages/lowcoder/src/i18n/locales/en.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2094,7 +2094,7 @@ export const en = {
20942094
inviteWelcomeTitle: "{username} invite you to login {productName}",
20952095
terms: "Terms",
20962096
privacy: "Privacy Policy",
2097-
registerHint: "I have read and agree",
2097+
registerHint: "I have read and agree to the",
20982098
chooseAccount: "Choose your Account",
20992099
signInLabel: "Sign in with {name}",
21002100
bindAccount: "Bind Account",

client/packages/lowcoder/src/pages/userAuth/authComponents.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -203,11 +203,11 @@ export const TermsAndPrivacyInfo = (props: { onCheckChange: (e: CheckboxChangeEv
203203
<TermsAndPrivacyContent>
204204
<CheckBox defaultChecked onChange={(e) => props.onCheckChange(e)} />
205205
<TermsAndPrivacyLabel>
206-
{trans("userAuth.registerHint")}
206+
{trans("userAuth.registerHint")}{`: `}
207207
<StyledLink href={termsUrl} target="_blank">
208208
{trans("userAuth.terms")}
209209
</StyledLink>
210-
{` `}
210+
{` & `}
211211
<StyledLink href={privacyUrl} target="_blank">
212212
{trans("userAuth.privacy")}
213213
</StyledLink>

deploy/docker/README.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ Image can be configured by setting environment variables.
3232
| `PGID` | ID of group of the user running services. | `9001` |
3333
| `MONGODB_URL` | Mongo database connection string | `mongodb://localhost:27017/lowcoder?authSource=admin` |
3434
| `REDIS_URL` | Redis server URL | `redis://localhost:6379` |
35-
| `ENABLE_USER_SIGN_UP` | Enable registration of new users | `true` |
3635
| `ENCRYPTION_PASSWORD` | Encryption password | `lowcoder.org` |
3736
| `ENCRYPTION_SALT` | Salt used for encrypting password | `lowcoder.org` |
3837
| `CORS_ALLOWED_DOMAINS` | CORS allowed domains | `*` |
@@ -45,6 +44,9 @@ Image can be configured by setting environment variables.
4544
| `DEFAULT_ORG_GROUP_COUNT` | Default maximum groups per organization | `100` |
4645
| `DEFAULT_ORG_APP_COUNT` | Default maximum applications per organization | `1000` |
4746
| `DEFAULT_DEVELOPER_COUNT` | Default maximum developers | `100` |
47+
| `COMMON_WORKSPACE_MODE` | SAAS to activate, ENTERPRISE to switch off - Workspaces | `SAAS` |
48+
| `ENABLE_USER_SIGN_UP` | Control if users create their own Workspace automatic when Sign Up | `true` |
49+
| `AUTH_EMAIL_ENABLE` | Control to show the eMail Login after Admin user is set | `true` |
4850

4951

5052
## Building api-service image
@@ -80,8 +82,9 @@ Image can be configured by setting environment variables.
8082
| `DEFAULT_DEVELOPER_COUNT` | Default maximum developers | `100` |
8183
| `LOWCODER_MAX_QUERY_TIMEOUT` | Lowcoder max query timeout (in seconds) | `120` |
8284
| `LOWCODER_MAX_REQUEST_SIZE` | Lowcoder max request size | `20m` |
83-
84-
85+
| `COMMON_WORKSPACE_MODE` | SAAS to activate, ENTERPRISE to switch off - Workspaces | `SAAS` |
86+
| `ENABLE_USER_SIGN_UP` | Control is users can create their own Workspace when Sign Up | `true` |
87+
| `AUTH_EMAIL_ENABLE` | Control to show the eMail Login after Admin user is set | `true` |
8588

8689
## Building node-service image
8790

0 commit comments

Comments
 (0)