A friendly programming language from the future
Go to file
2022-12-21 16:55:42 -05:00
.github pull Unison.Test.Cache out into its own test suite 2022-12-09 14:52:18 -05:00
chez-libs Add Chez scheme readme 2022-11-21 16:55:15 -05:00
codebase2 ⅄ trunk → 22-12-14-tidy-up-hashing-package 2022-12-21 16:55:42 -05:00
contrib adjust contrib/cabal.project 2022-06-04 11:45:20 -04:00
deps Bump to lts-15.13 2020-05-24 10:20:52 -04:00
docs Lowercase debug flags 2022-11-14 12:01:48 -06:00
editor-support vim-completion: don't include bang 2022-02-18 08:21:35 -08:00
lib ⅄ trunk → 22-12-14-tidy-up-hashing-package 2022-12-21 16:55:42 -05:00
parser-typechecker ⅄ trunk → 22-12-14-tidy-up-hashing-package 2022-12-21 16:55:42 -05:00
scripts reorder args in usage doc 2022-10-18 16:57:24 -06:00
unison-cli ⅄ trunk → 22-12-14-tidy-up-hashing-package 2022-12-21 16:55:42 -05:00
unison-core ⅄ trunk → 22-12-14-tidy-up-hashing-package 2022-12-21 16:55:42 -05:00
unison-hashing-v2 fold U.Util.Hash into Unison.Hash 2022-12-15 13:48:36 -05:00
unison-share-api ⅄ trunk → 22-12-14-tidy-up-hashing-package 2022-12-21 16:55:42 -05:00
unison-src add all-base-hashes.md transcript 2022-12-21 11:50:09 -05:00
unison-syntax fold U.Util.Hash into Unison.Hash 2022-12-15 13:48:36 -05:00
yaks/easytest Canonicalize semigroup instances 2022-08-09 10:31:23 -06:00
.gitattributes support windows in ci (#2913) 2022-02-28 20:05:02 -06:00
.gitignore Commit stack.yaml.lock as is recommended. 2022-03-31 15:23:49 -06:00
.mailmap Update Mat Ess 2021-06-07 14:26:39 -04:00
.mergify.yml ci(Mergify): configuration update 2022-07-04 07:24:42 -04:00
config added dev notes document, updated logging defaults 2016-10-06 13:11:38 -04:00
CONTRIBUTORS.markdown update: added handle to CONTRIBUTORS.md to acknowledge acceptance of Unison's MIT license 2022-09-12 08:31:22 +01: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 Added note in development.markdown 2022-12-05 12:41:11 -06:00
hie.yaml ⅄ trunk → 22-12-14-tidy-up-hashing-package 2022-12-15 12:46:57 -05:00
LICENSE Update LICENSE 2022-11-30 10:22:55 -08:00
README.md Add configuration docs 2022-11-09 11:30:56 -06:00
sql this symlink for haskell-language-server's sake 2021-02-01 21:13:58 -05:00
stack.yaml ⅄ trunk → 22-12-14-tidy-up-hashing-package 2022-12-15 12:46:57 -05:00
stack.yaml.lock ⅄ trunk → 22-11-21-delete-prelude-extras 2022-11-23 10:24:11 -05:00
unison add unison symlink for supporting hereFile in or out of enlil 2022-07-08 13:02:09 -04: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)

$ 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