Quickstart

Welcome to Dataround! This guide will help you get started quickly.

  1. Clone the repository

    git clone https://github.com/dataround/dataround-link.git
    
  2. Build the project

    # require Java 17 and Maven 3.8 or higher
    cd dataround-link
    mvn clean package -DskipTests
    

    The final package will be generated at dataround-link-svc/target/dataround-link-xxx.tar.gz

  1. Create PostgreSQL database

    # require PostgreSQL database
    CREATE DATABASE dataround_link;
    
  2. Start dataround link server

    Modify database IP, name and password conf in $DATAROUND_HOME/conf/application.yaml, Start the service:

    cd $DATAROUND_HOME
    ./bin/start.sh
    

    The application will be available at http://localhost:5600/datalink

Dataround platform

Building dataround platform

  1. Clone the repository

    git clone https://github.com/dataround/dataround-platform.git