hyperspace/docs/_docs/06-dg-building-from-source.md

921 B

title permalink excerpt last_modified_at toc
Building from Source /docs/dg-building-from-source/ Building from source 2020-06-23 true

Building from Source

Hyperspace is built with sbt. Run the following commands from the project root directory.

On *nix OS

To compile:

$ ./build/sbt compile

To run tests:

$ ./build/sbt test

On Windows

Download and install sbt.

To compile:

$ sbt compile

To run tests:

$ sbt test

For Development On Intellij

  1. Download and install Intellij with Scala plugin enabled
  2. Intellij -> Open -> Choose file <root>/build.sbt -> Open As Project
  3. Open sbt shell as: View -> Tool Windows -> sbt shell

To compile:

> compile

To run tests:

> test