diff --git a/convertigo/content.md b/convertigo/content.md index ce7456aa9abd..a678a6c80f59 100644 --- a/convertigo/content.md +++ b/convertigo/content.md @@ -1,10 +1,10 @@ -# What is Convertigo Mobility Platform ? +# What is Convertigo Low Code Platform ? -Convertigo is an open source fullstack Low Code & No Code platform.. The platform is used to build complex Cross-platform Enterprise Mobile apps in a few days. Convertigo platform is composed of several components: +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: -1. **Convertigo MBaaS**: The back-end MBaaS server part. Handles back-end connectors, micro-services execution, offline data device synchronization and serves 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 MBaaS micro-services workflows and optionaly use the "Mobile Builder" edition to build Mobile apps UIs in a MXDP (Multi eXperience Development Platform) Low code mode. Can be directly downloaded from [Sourceforge.net](https://sourceforge.net/projects/convertigo/files/latest/download) -3. **Convertigo SDKs**: Can be used with third party Mobile development tools such as Xcode (iOS) Android Studio (Android). SDKS are available on each platform standard repository (Bintray for Android, Cocoapods for iOS and Nuget for .NET) +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 [Sourceforge.net](https://sourceforge.net/projects/convertigo/files/latest/download) +3. **Convertigo SDKs**: Can be used with third party Client Web & Mobile development tools such as Xcode (iOS) Android Studio (Android) Angualr, Vue.js or plain js . SDKS are available on each platform standard repository (Bintray for Android, Cocoapods for iOS and Nuget for .NET) 4. **Convertigo Forms**: 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. @@ -21,13 +21,13 @@ Convertigo Community edition brought to you by Convertigo SA (Paris & San Franci $ docker run --name C8O -d -p 28080:28080 %%IMAGE%% ``` -This will start a container running the minimum Convertigo MBaaS server. Convertigo MBaaS uses images' **/workspace** directory to store configuration file and deployed projects as an Docker volume. +This will start a container running the minimum Convertigo server. Convertigo uses images' **/workspace** directory to store configuration file and deployed projects as an Docker volume. You can access the Server admin console on http://[dockerhost]:28080/convertigo and login using the default credentials: admin / admin ## Link Convertigo to a CouchDB database for FullSync (Convertigo EE only) -Convertigo MBaaS FullSync module uses Apache CouchDB 2.3.1 as NoSQL repository. You can use the **[couchdb](https://hub.docker.com/_/couchdb/)** docker image and link to it convertigo this way +Convertigo FullSync module uses Apache CouchDB 2.3.1 as NoSQL repository. You can use the **[couchdb](https://hub.docker.com/_/couchdb/)** docker image and link to it convertigo this way Launch CouchDB container and name it 'fullsync' @@ -35,13 +35,13 @@ Launch CouchDB container and name it 'fullsync' $ docker run -d --name fullsync couchdb:2.3.1 ``` -Then launch Convertigo and link it to the running 'fullsync' container. Convertigo MBaaS sever will automatically use it as its fullsync repository. +Then launch Convertigo and link it to the running 'fullsync' container. Convertigo Low Code sever will automatically use it as its fullsync repository. ```console $ docker run -d --name C8O --link fullsync:couchdb -p 28080:28080 %%IMAGE%% ``` -## Link Convertigo to a Billing & Analytics database +## Link Convertigo Low Code Server to a Billing & Analytics database ### MySQL @@ -56,7 +56,7 @@ $ docker run -d --name C8O --link [mysql-container]:mysql -p 28080:28080 %%IMAGE%% ``` -## Where is Convertigo MBaaS server storing deployed projects +## Where is Convertigo Low Code server storing deployed projects Projects are deployed in the Convertigo workspace, a simple file system directory. You can map the docker container **/workspace** to your physical system by using : @@ -66,7 +66,7 @@ $ docker run --name C8O -v $(pwd):/workspace -d -p 28080:28080 %%IMAGE%% You can share the same workspace by all Convertigo containers. In this case, when you deploy a project on a Convertigo container, it will be seen by others. This is the best way to build multi-instance load balanced Convertigo server farms. -**Be sure to have a really fast file sharing between instances !!!** +**Be sure to have a really fast file sharing between instances !!! We have experienced that Azure File Share is not fast enough** To avoid log and cache mixing, you have to add 2 variables for instance specific paths: @@ -85,15 +85,15 @@ COPY myProject.car /usr/local/tomcat/webapps/convertigo/WEB-INF/default_user_wor COPY myDependency.car /usr/local/tomcat/webapps/convertigo/WEB-INF/default_user_workspace/projects/ ``` -## Migrate from an earlier version of Convertigo +## Migrate from an earlier version of Convertigo Low Code Platform - Stop the container to perform a backup. And just back the workspace directory. This will backup all the projects definitions and some project data. -- Start a new Convertigo MBaaS docker container mapping the workspace +- Start a new Convertigo docker container mapping the workspace - All the workspace (Projects) will be automatically migrated to the new Convertigo MBaaS version ## Security -The default administration account of a Convertigo serveur is **admin** / **admin** and the **testplatform** is anonymous. +The default administration account of a Convertigo server is **admin** / **admin** and the **testplatform** is anonymous. These accounts can be configured through the *administration console* and saved in the **workspace**. @@ -189,7 +189,7 @@ $ docker run -d --name C8O -e DISABLE_SUDO=true -p 28080:28080 %%IMAGE%% ## Pre configurated Docker compose stack -You can use this [stack](https://github.com/convertigo/docker/blob/master/compose/mbaas/docker-compose.yml) to run a complete Convertigo MBaaS server with FullSync repository and MySQL analytics in a few command lines. +You can use this [stack](https://github.com/convertigo/docker/blob/master/compose/mbaas/docker-compose.yml) to run a complete Convertigo Low Code server with FullSync repository and MySQL analytics in a few command lines. ```console $ mkdir c8oMBaaS diff --git a/convertigo/license.md b/convertigo/license.md index b4c7d60615c6..a663fafda20f 100644 --- a/convertigo/license.md +++ b/convertigo/license.md @@ -1 +1 @@ -Convertigo Community Edition MBaaS image is licenced under [AGPL 3.0](http://www.gnu.org/licenses/agpl-3.0.html) +Convertigo Community Edition image is licenced under [AGPL 3.0](http://www.gnu.org/licenses/agpl-3.0.html)