Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagebash
titleBuild & start core system Docker images
# Go back to the main directory of incubator-streampipes

docker-compose up

# This will build the Docker images for the streampipes-backend and the streampipes-connect-master modules. In addition, it will start several 3rd party Docker containers that are 
# mandatory for StreamPipes, e.g., CouchDB and Consul. Again, be aware that this docker-compose configuration does not include volume persistency and should therefore only be used for 
# short-term testing.

incubator-streampipes-extensions

Now we'll build and start the extensions project:

Code Block
languagebash
titleBuild Maven artifacts
# Open incubator-streampipes-extensions folder
cd incubator-streampipes-extensions

# Run Maven Build
mvn clean package
docker-compose up

This will start all extensions (except Flink modules) and you're ready for testing!

Test system
Anchor
test-system
test-system
 (Community)

Go to your browser and open the StreamPipes UI at localhost:80.

Perform the installation steps (all pipeline elements should be automatically installed) and test the system according to the Pre-Release Checklist.

Fix critical issue
Anchor
fix-critical-issue
fix-critical-issue
 (Community)

...