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-installer.git
    # HTTPS
    git clone https://github.com/apache/incubator-streampipes-installer.git
    
    # switch to development branch
    git checkout dev


  2. Open CLI directory

    Code Block
    languagebash
    titlePrepare Installer
    cd incubator-streampipes-installer
    cd cli


  3. Configure StreamPipes for UI development

    Code Block
    languagebash
    titlePrepare Installer
    ./spstreampipes env --set-template ui-dev
    # Updates the file 'system'. All StreamPipes services required for UI development are selected


  4. Start StreamPipes backend

    Code Block
    languagebash
    titlePrepare Installer
    # Downloads all docker images and starts StreamPipes backend
    ./spstreampipes startup


Set-Up UI

  1. Clone StreamPipes [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


  2. Go to 'ui' directory

    Code Block
    languagebash
    titlePrepare Installer
    cd incubator-streampipes/ui


  3. Install npm dependencies

    Code Block
    languagebash
    titlePrepare Installer
    npm install


  4. Start the UI

    Code Block
    languagebash
    titlePrepare Installer
    npm start