A friendly programming language from the future
Go to file
Chris Penner c073117871
Allow testing Share API in transcripts (#3062)
* Support API calls in transcripts
2022-05-02 09:55:15 -06:00
.github Use stack test suites (#2656) 2022-04-07 10:16:13 -06:00
codebase2 Re-implement Browse API to avoid loading entire codebase root (#3054) 2022-04-26 09:41:31 -06:00
contrib Add missing packages to cabal.project. 2022-04-28 14:30:00 -04:00
deps Bump to lts-15.13 2020-05-24 10:20:52 -04:00
docs updating website url references to new website 2022-03-04 14:20:24 -08:00
editor-support vim-completion: don't include bang 2022-02-18 08:21:35 -08:00
lib Merge pull request #3051 from unisonweb/topic/relation-speed 2022-04-20 23:00:47 +00:00
parser-typechecker Re-implement Browse API to avoid loading entire codebase root (#3054) 2022-04-26 09:41:31 -06:00
scripts Use stack test suites (#2656) 2022-04-07 10:16:13 -06:00
unison-cli Allow testing Share API in transcripts (#3062) 2022-05-02 09:55:15 -06:00
unison-core lib segment ranking 2022-04-07 00:42:59 -05:00
unison-share-api Allow testing Share API in transcripts (#3062) 2022-05-02 09:55:15 -06:00
unison-src Allow testing Share API in transcripts (#3062) 2022-05-02 09:55:15 -06:00
yaks/easytest updating website url references to new website 2022-03-04 14:20:24 -08: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 let mergify wait for windows build 2022-03-02 17:32:38 -05:00
config added dev notes document, updated logging defaults 2016-10-06 13:11:38 -04:00
CONTRIBUTORS.markdown removing contributor blurbs 2022-04-13 19:33:58 -05:00
CREDITS.md Create CREDITS.md 2020-09-29 13:37:01 -04:00
dev-ui-install.sh Match UI release zip file of unisonLocal.zip 2021-11-29 10:30:22 -05:00
development.markdown Use stack test suites (#2656) 2022-04-07 10:16:13 -06:00
hie.yaml Add unison-share-api package with Sync APIs (#3018) 2022-04-01 10:14:01 -06:00
LICENSE Update and standardize licenses 2021-10-12 13:47:08 -06:00
README.md Update README.md 2022-04-13 19:43:32 -05:00
sql this symlink for haskell-language-server's sake 2021-02-01 21:13:58 -05:00
stack.yaml add sha256 hash for fuzzyfind-3.0.0 2022-04-30 11:36:25 -04:00
stack.yaml.lock forgot to include stack.yaml.lock 2022-04-30 22:30:40 -04:00
weeder.dhall pull some weeds 2021-05-06 23:19:11 -06:00

The Unison language

Build Status

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 a local codebase-ui while building from source, you can use the /dev-ui-install.sh script. It will download the latest release of the codebase-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 the codebase-ui is running.

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

Codebase Server

When ucm starts it starts a Codebase web server that is used by the Codebase 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.