A friendly programming language from the future
Go to file
2024-03-24 12:09:24 -06:00
.github git config needed before commit 2024-03-22 19:09:53 -06:00
codebase2 Vastly speed up ancestry check by not re-crawling duplicate histories. 2024-03-06 11:19:43 -08:00
contrib Update cabal.project 2024-03-15 06:10:57 -04:00
deps Bump to lts-15.13 2020-05-24 10:20:52 -04:00
docs Merge branch 'trunk' into arya/jit-release 2024-03-21 14:35:22 -06:00
editor-support Remove hacky vim auto-completion 2023-04-24 09:02:02 -04:00
lib Merge branch 'trunk' of https://github.com/unisonweb/unison into runarorama/improve-tdnr-message 2024-01-25 09:44:20 -05:00
nix Disable hoogle in haskell-nix shell 2024-03-15 06:17:08 -04:00
parser-typechecker Merge pull request #4822 from unisonweb/travis/kind-inference-docs 2024-03-22 11:15:32 -06:00
scheme-libs/racket Fix a bug in the jit's runtime code caching operation 2024-03-22 17:33:22 -04:00
scripts use gh release view to determine previous release version 2024-03-21 15:54:16 -06:00
unison-cli split TH parts of unison-cli into unison-cli-main 2024-03-24 11:10:47 -06:00
unison-cli-main integration tests need to know where to find themselves 2024-03-24 12:09:24 -06:00
unison-core use only two priorities for ranking name suffixes, not three 2024-03-18 17:08:33 -04:00
unison-hashing-v2 WIP 2024-02-22 16:34:33 -08:00
unison-share-api [create-pull-request] automated change 2024-03-12 18:35:54 +00:00
unison-share-projects-api Rename squash flag 2023-08-31 14:45:57 -07:00
unison-src Modify serial-tests to test for cache_ bug 2024-03-22 17:47:37 -04:00
unison-syntax Improve source excerpt highlighting 2024-03-13 12:14:31 -07:00
yaks/easytest Ormolu-ify the codebase and update development.markdown docs 2023-02-13 13:03:08 -06:00
.gitattributes support windows in ci (#2913) 2022-02-28 20:05:02 -06:00
.gitignore Add unisonLocal.zip to .gitignore 2023-06-14 12:55:40 -04:00
.mailmap Update Mat Ess 2021-06-07 14:26:39 -04:00
.mergify.yml ci(Mergify): configuration update 2023-05-26 06:49:12 -04:00
config added dev notes document, updated logging defaults 2016-10-06 13:11:38 -04:00
CONTRIBUTORS.markdown Merge remote-tracking branch 'origin/trunk' into setupminimal-explicit-parser-exports 2024-02-01 15:57:49 -05:00
CREDITS.md Create CREDITS.md 2020-09-29 13:37:01 -04:00
dev-ui-install.sh Use unison-local-ui over codebase-ui 2022-07-05 16:57:03 -04:00
development.markdown update nix development docs 2024-03-14 18:36:45 -04:00
Dockerfile use relative paths in Dockerfile 2024-01-22 15:25:56 -08:00
flake.lock Add build-tools devShell that doesn't depend on haskell.nix 2023-11-15 15:32:38 -05:00
flake.nix update macsdk version 2023-12-04 11:53:26 -05:00
hie.yaml update hie.yaml 2024-03-24 12:09:15 -06:00
LICENSE Update copyright 2024-02-25 12:20:25 -05:00
README.md Update README.md 2024-02-29 13:01:10 -06:00
stack.yaml one very important piece 2024-03-24 11:47:30 -06:00
stack.yaml.lock Bump lsp lib version 2023-11-07 17:36:09 -08:00
weeder.dhall pull some weeds 2021-05-06 23:19:11 -06:00

The Unison language

Build Status

Overview

Unison is a modern, statically-typed purely functional language with the ability to describe entire distributed systems using a single program. Here's an example of a distributed map-reduce implementation:

-- comments start with `--`
mapReduce loc fn ifEmpty reduce data = match split data with
  Empty          -> ifEmpty
  One a          -> fn a
  Two left right ->
    fl = forkAt loc '(mapReduce loc fn ifEmpty reduce !left)
    fr = forkAt loc '(mapReduce loc fn ifEmpty reduce !right)
    reduce (await fl) (await fr)

This function can be either simulated locally (possibly with faults injected for testing purposes), or run atop a distributed pool of compute. See this article for more in-depth coverage of how to build distributed computing libraries like this.

Other resources:

Building using Stack

If these instructions don't work for you or are incomplete, please file an issue.

The build uses Stack. If you don't already have it installed, follow the install instructions for your platform. (Hint: brew update && brew install stack)

If you have not set up the Haskell toolchain before and are trying to contribute to Unison on an M1 Mac, we have some tips specifically for you.

$ git clone https://github.com/unisonweb/unison.git
$ cd unison
$ stack --version # we'll want to know this version if you run into trouble
$ stack build --fast --test && stack exec unison

To run the Unison Local UI while building from source, you can use the /dev-ui-install.sh script. It will download the latest release of unison-local-ui and put it in the expected location for the unison executable created by stack build. When you start unison, you'll see a url where Unison Local UI is running.

See development.markdown for a list of build commands you'll likely use during development.

Language Server Protocol (LSP)

View Language Server setup instructions here.

Codebase Server

When ucm starts it starts a Codebase web server that is used by the Unison Local UI. It selects a random port and a unique token that must be used when starting the UI to correctly connect to the server.

The port, host and token can all be configured by providing environment variables when starting ucm: UCM_PORT, UCM_HOST, and UCM_TOKEN.

Configuration

See the documentation for configuration here