Versions Compared

Key

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

...

  1. Clone Installer [Link]

    Code Block
    languagebash
    titlePrepare Installer
    # SSH
    git clone git@github.com:apache/incubator-streampipes.git
    
    # HTTPS
    git clone https://github.com/apache/incubator-streampipes.git 
    
    # switch to development branch
    git checkout dev


  2. Open CLI directory

    Code Block
    languagebash
    titlePrepare Installer
    cd installer
    cd cli


  3. Configure StreamPipes for backend development

    Code Block
    languagebash
    titlePrepare Installer
    ./streampipes env --set backend
    # Updates the file 'system'. All StreamPipes services required for development are selected


  4. Start third party services (e.g. CouchDB, Kafka, ... in docker)

    Code Block
    languagebash
    titlePrepare Installer
    ./streampipes up -d


...