Skip to content

Commit 4366c1c

Browse files
committed
add README file
1 parent b3a528a commit 4366c1c

File tree

6 files changed

+15
-26
lines changed

6 files changed

+15
-26
lines changed

packages/api-gateway/README.md

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
Unit that manages incoming client request and redirects relevant backend service. Moreover, has authentication module that check user information and generate JWT.
1+
# /api-gateway
22

3-
Consists of:
4-
- Rate limiting
5-
- Helmet lib
6-
- Auth module
3+
Central api gateway to access all APIs safely and efficiently that manages incoming client request and redirects relevant backend service. Moreover, has authentication module that check user information and generate JWT.

packages/dockerize-api/README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1-
flow-dockerize-service
1+
# dockerize-api
2+
3+
To ensure that different flows run in isolation and use system resources efficiently, each flow is given its own container when created. Every flow runs inside its own Docker container. All data related to that flow is stored in the database within that container. The container can be stopped or moved to another computer as needed. The purpose of this package is to manage this entire process.

packages/editor/README.md

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,3 @@
1-
[![Netlify Status](https://api.netlify.com/api/v1/badges/b07708c8-4212-48c7-92d7-ee2239681363/deploy-status)](https://app.netlify.com/sites/oz-flowbuilder/deploys)
1+
# /editor
22

3-
# flow-builder-frontend
4-
5-
Create .env file to root directory:
6-
7-
```ini
8-
VITE_GATEWAY_CLOUD_URL = XXXX
9-
VITE_GATEWAY_LOCAL_URL = XXXX
10-
VITE_HOST_ENV= (development or production or test)
11-
```
3+
The frontend part of the application. All React components are found in this package. If you need to change the ports of the services in other packages, you need to update these ports in the .env file.

packages/entity-api/README.md

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,3 @@
1-
This service consists of:
1+
# /entity-api
22

3-
- User module
4-
- Organization module (short-term)
5-
- Workspace module
6-
- Flow structure module
7-
- Studio structure module (long-term)
8-
- Team module
9-
- Permission module
3+
This service is responsible for handling the database communication for all entities in the application. It manages the database interactions for data like Users, Workspaces, Projects, Flows, Permissions, and Teams.

packages/flow-runtime/README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1-
flow-runtime service
1+
# /flow-runtime
2+
3+
The core component for running Originzero flows. When a Docker container is started for each flow, a flow-runtime service is launched inside that container alongside a MongoDB service. This service is responsible for managing the database communication of flow elements (nodes and edges) and ensuring the entire flow algorithm runs correctly and concurrently.

packages/math-service/README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1-
Calculus service
1+
# /math-service
2+
3+
The backend service for the Calculation node within the flows. It is designed to efficiently handle all types of mathematical operations, including complex calculations. When a Docker container is started for each flow, a math-service is also started for that flow.

0 commit comments

Comments
 (0)