Installation

Download binary releases

Pre-compiled releases can be downloaded from the releases page.

Prerequisite

  • JRE 8 and above

  • MongoDB (Tested with 4.0.3)

You can also use online MongoDB service providers to avoid setting up the database server yourself. There are popular service providers who provides free plan, including mLab and MongoDB Atlas.

Run

Once you have downloaded the pre-compiled jar file, you can run it with:

java -jar labpipe-server-all.jar --help

Build from source code

Prerequisite

  • JDK 8 and above

  • MongoDB (Tested with 4.0.3)

  • Gradle 5 (Tested with 5.4.1 and 5.5)

You can also use online MongoDB service providers to avoid setting up the database server yourself. There are popular service providers who provides free plan, including mLab and MongoDB Atlas.

Build artifacts and run

gradle clean build
java -jar build/libs/labpipe-server-all.jar

Run from source code

gradle clean run

If you are using gradle run, you can pass arguments with --args, e.g. --args="--help".

Last updated

Was this helpful?