A friendly programming language from the future
Go to file
Paul Chiusano 26f8dd37f2 Codebase server default ui path is relative to the executable now
To test, I added a script that downloads the latest UI release and puts it next to the executable.
2021-05-28 14:45:10 -05:00
.github tag release whenever we merge to trunk 2021-05-25 17:03:20 -07:00
codebase2 fix white space in before query 2021-05-24 21:41:26 -06:00
contrib Move cabal.project to contrib/ 2020-02-04 08:27:16 -05:00
deps Bump to lts-15.13 2020-05-24 10:20:52 -04:00
docs add more sql to v2.markdown 2021-05-06 21:22:34 -06:00
editor-support Correct semantics of "fold" comment 2020-09-20 16:45:17 +01:00
parser-typechecker Codebase server default ui path is relative to the executable now 2021-05-28 14:45:10 -05:00
scripts Fix scripts/unisonloop.sh. 2019-10-01 20:36:01 +02:00
unison-core remove redundant stuff 2021-05-10 20:48:56 -06:00
unison-src Refresh transcripts 2021-05-28 09:04:24 -05:00
yaks/easytest comment out the failing test that exercises this 2021-05-25 12:36:23 -05:00
.gitignore ignore .hie files created by probably -fwrite-ide-info 2021-04-28 20:33:11 -06:00
.mergify.yml Update mergify.yml for new build matrix 2021-05-28 09:19:40 -05:00
config added dev notes document, updated logging defaults 2016-10-06 13:11:38 -04:00
CONTRIBUTORS.markdown Allow redundant commas in lists 2021-03-24 19:35:12 +01:00
CREDITS.md Create CREDITS.md 2020-09-29 13:37:01 -04:00
dev-ui-install.sh Codebase server default ui path is relative to the executable now 2021-05-28 14:45:10 -05:00
development.markdown Codebase server default ui path is relative to the executable now 2021-05-28 14:45:10 -05:00
hie.yaml cleanup hie.yaml 2021-04-28 08:10:14 -06:00
LICENSE This calls for a commit 2018-11-07 16:38:04 -05:00
questions.md answered some questions 2021-04-27 17:43:58 -06:00
README.md Update README with ucm env var instructions 2021-03-18 15:47:04 -04:00
sql this symlink for haskell-language-server's sake 2021-02-01 21:13:58 -05:00
stack.yaml Merge branch 'trunk' into wip/codebase2-cleanup 2021-05-03 22:06:30 -06:00
weeder.dhall pull some weeds 2021-05-06 23:19:11 -06:00

The Unison language

Build Status

Unison is a new programming language, currently under active development. It's a modern, statically-typed purely functional language, similar to Haskell, but with the ability to describe entire distributed systems with 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 = at loc '(mapReduce loc fn ifEmpty reduce !left)
    fr = at loc '(mapReduce loc fn ifEmpty reduce !right)
    reduce !fl !fr

This function can be either simulated locally (possibly with faults injected for testing purposes), or run atop a distributed pool of compute.

If you'd like to learn more about the project, this Strange Loop talk is a good introduction. You can also follow along with project website or you can also say hello or lurk in the Slack chat.

We are currently alpha testing Unison. If you'd like to participate in alpha testing, you can go to the docs site to get started.

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 && stack exec tests && stack exec unison

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 most 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.