Install opam and use it to install the right OCaml version: opam switch 4.06.0 (don't forget to source your new opam environment via
$(opam config env)).
Now install the project dependencies:
opam pin add profiler-experiments -y .If you want to use the watch-mode, you need to install watchman:
https://facebook.github.io/watchman/docs/install.html#installing-on-os-x-via-homebrew
# Builds all build artifacts
make build
# Starts the socket-server (make sure to build first)
make start
# Cleans all build artifacts
make clean
# Uses watchman-make to watch all source files and rebuilds on change
make watch