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
- Download and install Intellij with Scala plugin enabled
- Intellij -> Open -> Choose file
<root>/build.sbt
-> Open As Project - Open sbt shell as: View -> Tool Windows -> sbt shell
To compile:
> compile
To run tests:
> test