update config add desktop client with all localhost ports split flagsets add user docs update readme Signed-off-by: Jörn Friedrich Dreyer <jfd@butonic.de>
25 lines
928 B
Markdown
25 lines
928 B
Markdown
---
|
|
title: "Building"
|
|
date: 2018-05-02T00:00:00+00:00
|
|
anchor: "building"
|
|
weight: 30
|
|
---
|
|
|
|
As this project is built with Go, so you need to install that first. The installation of Go is out of the scope of this document, please follow the official documentation for [Go](https://golang.org/doc/install).To build this project you have to install Go >= v1.13. After the installation of the required tools you need to get the sources:
|
|
|
|
{{< highlight txt >}}
|
|
git clone https://github.com/owncloud/ocis-reva.git
|
|
cd ocis-reva
|
|
{{< / highlight >}}
|
|
|
|
All required tool besides Go itself and make are bundled or getting automatically installed within the `GOPATH`. All commands to build this project are part of our `Makefile`.
|
|
|
|
|
|
### Backend
|
|
|
|
{{< highlight txt >}}
|
|
make build
|
|
{{< / highlight >}}
|
|
|
|
The above command should produce the binary within the `bin/` folder now, give it a try with `./bin/ocis-reva -h` to see all available options.
|