You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 4 Next »

Code

The code for the UI can be found on GitHub in the UI directory

Prerequisites

Install:

  • NodeJS + NPM (tested with v12+/ v6+)
  • Docker + Docker-Compose
  • You can use the IDE of your choice

Development Environment

Set-Up StreamPipes Backend

  1. Clone Installer [Link]

    Prepare 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

    Prepare Installer
    cd incubator-streampipes-installer
    cd cli
  3. Configure StreamPipes for UI development

    Prepare Installer
    ./sp set-template ui-dev
    # Updates the file 'system'. All StreamPipes services required for UI development are selected
  4. Start StreamPipes backend

    Prepare Installer
    # Downloads all docker images and starts StreamPipes backend
    ./sp start

Set-Up UI

  1. Clone StreamPipes [Link]
  2. Go to 'ui' directory
  3. RUN 'npm install'
  4. RUN 'npm start'
  • No labels