Files
opencloud/settings/docs/building.md
A.Unger f725ddaa65 Add 'settings/' from commit '230545a4a75b0611988fbcea51336a6c316d6a3d'
git-subtree-dir: settings
git-subtree-mainline: c26f7b390a
git-subtree-split: 230545a4a7
2020-09-18 12:43:43 +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-settings 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.12. After the installation of the required tools you need to get the sources:

{{< highlight txt >}} git clone https://github.com/owncloud/ocis-settings.git cd ocis-settings {{< / 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-settings -h to see all available options.