Files
opencloud/proxy/docs/building.md
A.Unger 598ca6c405 Add 'proxy/' from commit '201b9a652685cdfb72ba81c7e7b00ba1c60a0e35'
git-subtree-dir: proxy
git-subtree-mainline: 571d96e856
git-subtree-split: 201b9a6526
2020-09-18 12:47:26 +02:00

1.0 KiB

title, date, weight, geekdocRepo, geekdocEditPath, geekdocFilePath
title date weight geekdocRepo geekdocEditPath geekdocFilePath
Building 2018-05-02T00:00:00+00:00 30 https://github.com/owncloud/ocis-proxy edit/master/docs building.md

{{< toc >}}

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, 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-proxy.git cd ocis-proxy {{< / 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 generate make build {{< / highlight >}}

Finally you should have the binary within the bin/ folder now, give it a try with ./bin/ocis-proxy -h to see all available options and subcommands.