|
|
@@ -1,12 +1,12 @@
|
|
|
# What is Convertigo Low Code Platform ?
|
|
|
|
|
|
-Convertigo is an open source fullstack Low Code & No Code platform. The platform is used to build Enterprise Web & Mobile apps in a few days. Convertigo platform is composed of several components:
|
|
|
+Convertigo is an open source fullstack AI driven Low Code & No Code platform. The platform is used to build Enterprise Web & Mobile apps in a few days. Convertigo platform is composed of several components:
|
|
|
|
|
|
1. **Convertigo Server**: The back-end server part. Handles back-end connectors, micro-services execution, offline data device synchronization and serves Web & Mobile Web apps. Runs as a Docker container with the `convertigo` image
|
|
|
-2. **Convertigo Studio**: Runs on a Windows or a MacOS workstation, Eclipse based IDE, used to program Back-end micro-services workflows and use the "Mobile Builder" edition to build Mobile & Web apps UIs in a MXDP (Multi eXperience Development Platform) Low code mode. Can be directly downloaded from [Convertigo](https://www.convertigo.com/get-started-page)
|
|
|
+2. **Convertigo Studio**: Runs on a Windows or a MacOS workstation, Eclipse based IDE, used to program Back-end micro-services workflows and use the "Mobile Builder" edition to build Mobile & Web apps UIs with AI assistance Low code mode. Can be directly downloaded from [Convertigo](https://www.convertigo.com/get-started-page)
|
|
|
3. **Convertigo NoCode Studio**: The No Code App Builder to build form based apps as PWAs or Web applications with a Web Based NoCode studio intented for non technical developpers (Citizen Developpers)
|
|
|
|
|
|
-Convertigo Community edition brought to you by Convertigo SA (Paris & San Francisco). The platform is currently used by more than 100K developers worldwide, building enterprise class mobile apps.
|
|
|
+Convertigo Community edition brought to you by Convertigo SA. The platform is currently used by more than 150K developers worldwide, building enterprise class business apps.
|
|
|
|
|
|
> [www.convertigo.com](https://www.convertigo.com)
|
|
|
|
|
|
@@ -98,7 +98,7 @@ COPY myDependency.car /usr/local/tomcat/webapps/convertigo/WEB-INF/default_user_
|
|
|
|
|
|
## Make image with pre-deployed configuration
|
|
|
|
|
|
-You can add to your image a set of pre-configured symbols by copying the `global_symbols.properties`, you have to have this file next to your `Dockerfile`:
|
|
|
+You can add a set of preconfigured symbols to your image by copying the `global_symbols.properties` file. Make sure this file is located in the same directory as your `Dockerfile`:
|
|
|
|
|
|
```console
|
|
|
FROM %%IMAGE%%
|
|
|
@@ -113,7 +113,7 @@ COPY global_symbols.properties /usr/local/tomcat/webapps/convertigo/WEB-INF/defa
|
|
|
|
|
|
## Security
|
|
|
|
|
|
-The default administration account of a Convertigo server is **admin** / **admin** and the **testplatform** is anonymous.
|
|
|
+The default administration account of a Convertigo server is **admin** / **admin**.
|
|
|
|
|
|
These accounts can be configured through the **administration console** and saved in the **workspace**.
|
|
|
|
|
|
@@ -125,12 +125,12 @@ You can change the default administration account :
|
|
|
$ docker run -d --name C8O -e CONVERTIGO_ADMIN_USER=administrator -e CONVERTIGO_ADMIN_PASSWORD=s3cret -p 28080:28080 %%IMAGE%%
|
|
|
```
|
|
|
|
|
|
-### `CONVERTIGO_TESTPLATFORM_USER` and `CONVERTIGO_TESTPLATFORM_PASSWORD` Environment variables
|
|
|
+### `CONVERTIGO_ANONYMOUS_DASHBOARD` Environment variable
|
|
|
|
|
|
-You can lock the **testplatform** by setting the account :
|
|
|
+You can allow anonymous access to `/convertigo/dashboard/` by setting:
|
|
|
|
|
|
```console
|
|
|
-$ docker run -d --name C8O -e CONVERTIGO_TESTPLATFORM_USER=tp_user -e CONVERTIGO_TESTPLATFORM_PASSWORD=s3cret -p 28080:28080 %%IMAGE%%
|
|
|
+$ docker run -d --name C8O -e CONVERTIGO_ANONYMOUS_DASHBOARD=true -p 28080:28080 %%IMAGE%%
|
|
|
```
|
|
|
|
|
|
## HTTPS / SSL Configuration
|
|
|
@@ -294,3 +294,7 @@ $ cd convertigo
|
|
|
$ curl -sL https://github.com/convertigo/docker/archive/refs/heads/compose.tar.gz | tar xvz --strip-components=1
|
|
|
$ docker compose up -d
|
|
|
```
|
|
|
+
|
|
|
+## Convertigo Helm chart
|
|
|
+
|
|
|
+You can find the [Convertigo Helm chart](https://artifacthub.io/packages/helm/convertigo/convertigo) and its documentation on ArtifactHUB.
|