Skip to content

Commit

Permalink
Version Naming and small Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
FalkWolsky committed Jan 17, 2024
1 parent 7ebe581 commit 8c70129
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion client/packages/lowcoder-comps/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "lowcoder-comps",
"version": "0.0.23",
"version": "0.0.24",
"type": "module",
"license": "MIT",
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion client/packages/lowcoder/src/i18n/locales/en.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2371,7 +2371,7 @@ export const en = {
"eventName": "Event Name",
"eventDesc": "Description",
"mehtod": "Methods",
"methodUsage": "You Can Interact with Components Through Their Methods, and You Can Call Them by Their Name Anywhere You Can Write JavaScript. Or You Can Call Them Through the 'Control Component' Action of an Event.",
"methodUsage": "You have the capability to engage with components via their respective methods, which can be accessed by their designated names within any segment where JavaScript is utilized. Additionally, these components can be activated through the 'Control Component' action, which is triggered in response to specific events",
"methodName": "Method Name",
"methodDesc": "Description",
"showBorder": "Show Border",
Expand Down
16 changes: 8 additions & 8 deletions server/api-service/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,21 +11,21 @@ Java - OpenJDK 17 Maven - Version 3+ (preferably 3.8+)
If you don't have an available MongoDB, you can start a local MongoDB service with docker:

```shell
docker run -d --name openblocks-mongodb -p 27017:27017 -e MONGO_INITDB_DATABASE=openblocks mongo
docker run -d --name lowcoder-mongodb -p 27017:27017 -e MONGO_INITDB_DATABASE=lowcoder mongo
```

Configure the MongoDB connection URI in the application-openblocks.yml
Configure the MongoDB connection URI in the application-lowcoder.yml
<img src="../../docs/.gitbook/assets/server-setup-image1.png"/>

### Redis

If you don't have an available MongoDB, you can start a local Redis service with docker:

```shell
docker run -d --name openblocks-redis -p 6379:6379 redis
docker run -d --name lowcoder-redis -p 6379:6379 redis
```

Configure the Redis connection URI in the application-openblocks.yml
Configure the Redis connection URI in the application-lowcoder.yml
<img src="../../docs/.gitbook/assets/server-setup-image2.png"/>

## Build and start the Lowcoder server jar
Expand All @@ -36,7 +36,7 @@ Configure the Redis connection URI in the application-openblocks.yml
```shell
cd server
mvn clean package
java -Dpf4j.mode=development -Dspring.profiles.active=openblocks -Dpf4j.pluginsDir=openblocks-plugins -jar openblocks-server/target/openblocks-server-1.0-SNAPSHOT.jar
java -Dpf4j.mode=development -Dspring.profiles.active=lowcoder -Dpf4j.pluginsDir=lowcoder-plugins -jar lowcoder-server/target/lowcoder-server-1.0-SNAPSHOT.jar
```

<img src="../../docs/.gitbook/assets/server-setup-start.gif"/>
Expand All @@ -58,15 +58,15 @@ IDEA 2021.3.2 (Community Edition):
</tr>
<tr>
<td>-cp </td>
<td>openblocks-server </td>
<td>lowcoder-server </td>
</tr>
<tr>
<td>VM options </td>
<td>-Dpf4j.mode=development -Dpf4j.pluginsDir=openblocks-plugins -Dspring.profiles.active=openblocks -XX:+AllowRedefinitionToAddDeleteMethods --add-opens java.base/java.nio=ALL-UNNAMED</td>
<td>-Dpf4j.mode=development -Dpf4j.pluginsDir=lowcoder-plugins -Dspring.profiles.active=lowcoder -XX:+AllowRedefinitionToAddDeleteMethods --add-opens java.base/java.nio=ALL-UNNAMED</td>
</tr>
<tr>
<td>Main class </td>
<td>com.openblocks.api.ServerApplication </td>
<td>com.lowcoder.api.ServerApplication </td>
</tr>
</table>

Expand Down
2 changes: 1 addition & 1 deletion server/api-service/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<name>lowcoder-root</name>

<properties>
<revision>2.0.1-SNAPSHOT</revision>
<revision>2.3.0-SNAPSHOT</revision>
<java.version>17</java.version>
<javadoc.disabled>true</javadoc.disabled>
<deploy.disabled>true</deploy.disabled>
Expand Down

0 comments on commit 8c70129

Please sign in to comment.