Skip to content

Latest commit

 

History

History
36 lines (33 loc) · 944 Bytes

README.md

File metadata and controls

36 lines (33 loc) · 944 Bytes

DataFlow web editor

A flow library based web editor

Steps to build docker image

  1. Build the base image "dataflow-editor-base" by running the below command in the project directory
    docker-compose build
    
  2. From the repository_files folder in the project directory, copy files to the repository folder
  3. Set the folder path to the environment variable in the file ".env"
    DIRPATH=nodetypes
    
  4. Build a new docker image which will use the previous build image as its base,
    Use docker compose
    docker-compose build
    
    To build image and run the container
    docker-compose up
    

Endpoint

To run on the local host

docker run -it -p 8080:8080 dataflow-editor:latest

To run from the build context

docker-compose up

References

[1] Drawflow by jerosoler. link