Building from Source
Building from SourcePermalink
Hyperspace is built with sbt. Run the following commands from the project root directory.
On *nix OSPermalink
To compile:
$ ./build/sbt compile
To run tests:
$ ./build/sbt test
On WindowsPermalink
Download and install sbt.
To compile:
$ sbt compile
To run tests:
$ sbt test
For Development On IntellijPermalink
- 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