Revision 06f7114d4ad1725d58f16fc5fdc9394f293c3539 authored by Iddan Aaronsohn on 01 October 2019, 11:35:37 UTC, committed by Denys Smirnov on 01 October 2019, 12:05:27 UTC
Corrected Getting-Started.md and moved some of it to docs/README.md
1 parent 87c9c34
Raw File
Installation.md
# Install Cayley

## Install Cayley on Ubuntu

```
snap install --edge --devmode cayley
```

## Install Cayley on macOS

### Install Homebrew

macOS does not include the Homebrew brew package by default. Install brew using the [official instructions](https://brew.sh/#install)

### Install Cayley

```bash
brew install cayley
```

## Install Cayley with Docker

```bash
docker run -p 64210:64210 cayleygraph/cayley
```

For more information see [Container Documentation](Container.md)

## Build from Source

See instructions in [Contributing](Contributing.md)
back to top