commit | 71b329d969c58654757083fbcb1849611de113a3 | [log] [tgz] |
---|---|---|
author | Piergiorgio Lucidi <plucidi@ziaconsulting.com> | Mon Jul 08 15:14:47 2024 +0200 |
committer | Piergiorgio Lucidi <plucidi@ziaconsulting.com> | Mon Jul 08 15:14:47 2024 +0200 |
tree | 79de7e935fb26d9dba9474b9214fb5cc5d496ad1 | |
parent | d98110b5a05f1d95ea5b6ad2cd2ac7456019a2e8 [diff] |
added support for MCF Docker Repo, added debug port 5005, support for Maven deps publicly available
This is the SDK project of Apache ManifoldCF dedicated to developers that need to extend the platform with new components, connectors or integrations using Maven and Docker. On the other hand this SDK can be extremely useful also for all the developers who want to contribute to the ManifoldCF project. This project has started with an initial contribution by @OpenPj and @binduwavell.
The SDK will take care of the following tasks:
ManifoldCF SDK is using the ManifoldCF Docker repository: https://hub.docker.com/r/apache/manifoldcf
What's new in v0.0.5
docker-hub
now is enabled by defaultIf you need to build your custom Docker image using dependencies built from the MCF source code and stored in the target folder (using the init
script mentioned below), please use the local
Maven profile.
Examples of commands using the main bash script for a typical usage:
./run.sh init 2.26 ga
-> start the init process for ManifoldCF 2.26 GA./run.sh init custom-version local /<USER_HOME>/Documents/workspaces/manifoldcf/custom-project
-> start the init process for a custom ManifoldCF project./run.sh build_start
-> build extensions and run everything with Docker locally using an official ManifoldCF distribution./run.sh build_start_local
-> build extensions and run everything with Docker locally using a custom local ManifoldCF source code repository./run.sh start
-> start all the containers (MCF dist and PostgreSQL)./run.sh stop
-> stop all the containers (MCF dist and PostgreSQL)./run.sh start_local
-> start all the containers (custom MCF project and PostgreSQL)./run.sh stop_local
-> stop all the containers (custom MCF project and PostgreSQL)Examples of commands for developing and testing MCF itself:
./run.sh init 2.22.1 rc
-> start the init process for ManifoldCF 2.22.1 RC./run.sh test
-> execute unit and integration tests in the MCF source bundle./run.sh clean
-> execute ant clean; mvn clean in the MCF source bundle./run.sh purge
-> removes all the Docker Volumes and the MCF init containerExamples of commands for generating the MCF website contents:
./run-site.sh build
-> Start Apache ManifoldCF SDK initialization for generating website contents./run-site.sh start
-> Run ManifoldCF Site Docker container./run-site.sh purge
-> Remove the ManifoldCF Site Docker artifacts and volumes./run-site.sh clean
-> Start the mcf-sdk-site in order to clean the project./run-site.sh stop
-> Stop the mcf-sdk-siteIn order to compile extensions with Maven, the SDK provides an initialization script that will download the source code of ManifoldCF and then build it in the container. At the end of the build process the Maven repository included in the container will be copied in the local folder target/mcf-maven-repo
. The local Maven repo will be used as the main reference for compiling the extension code.
The initialization command consists of the following arguments:
Example for initializing ManifoldCF 2.26 GA release:
./run.sh init 2.26 ga
Example for initializing ManifoldCF 2.27.1 RC release:
./run.sh init 2.27.1 rc
The initialization process will be executed with the following command:
/run.sh init 2.21 ga
A Dockerfile and a Docker Compose file is provided in order to build the ManifoldCF container and for running the instance with its own database, a PostgreSQL container.
The following command will take care of building extensions, run tests and building and running the ManifoldCF container
./run.sh build_start
To stop all the containers:
./run.sh stop
For running MCF tests related to the source code bundle:
./run.sh test
-> execute unit and integration tests for the related MCF version initialized in the Docker VolumesThe Docker images, containers and volumes managed by ManifoldCF SDK are the following:
The Docker image created with for creating the ManifoldCF installation and Maven repo is mcf-sdk-init
. The Docker container built by the SDK in order to create the installation folder and the Maven repo is mcf-sdk-init-container
.
mcf-sdk-init
-> image created with for creating the ManifoldCF installationmcf-sdk-init-container
-> container built by the SDK in order to create the installation folder and the Maven repomcf-maven-repo
-> this volume contains the Maven repo created by the initialization processmcf-app-volume
-> this volume contains the installation storage of ManifoldCFmcf-sdk-site
-> image created with specific version of Apache Ant 1.9.x, Python 2.7.x and OpenJDK 8mcf-sdk-site
-> container running the generation process of the website contentsmcf-site-source
-> this volume contains the site trunk codemcf-site-generated-volume
-> this volume contains the generated site