921 B
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
- 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