Building from Source

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

Updated: