mirror of
https://github.com/unisonweb/unison.git
synced 2024-11-14 07:51:12 +03:00
1.6 KiB
1.6 KiB
These are commands that will likely be useful during development.
General: ./scripts/test.sh
compiles and builds the Haskell code and runs all tests. Recommended that you run this before pushing any code to a branch that others might be working on.
Disclaimer If you have trouble getting started, please get in touch via gitter so we can help. If you have any fixes to the process, please send us a PR!
Running Unison
To get cracking with Unison,
- Install
stack
. - Build the project with
stack build
. - After building,
stack exec unison
will fire up the codebase editor, create a codebase in the current directory, and watch for.u
file changes. If you want to run it in a different directory, just addunison
to yourPATH
, after finding it withfind .stack-work -name unison -type f
. (For me, this finds two, they both work, but have different contents. ¯\_(ツ)_/¯ ) - Once a file is typechecked, you can do
add
to add it to the codebase, - and then
view
to view a definition, orhelp
for more ideas.
What if you want a profiled build?
Do:
stack build --executable-profiling --library-profiling --ghc-options="-fprof-auto -rtsopts" unison-parser-typechecker
Again you can leave off the flag. To run an executable with profiling enabled, do:
stack exec -- <executable-name> +RTS -p
That will generate a <executable-name>.prof
plain text file with profiling data. More info on profiling.