Building
As this project is built with Go and NodeJS, so you need to install that first. The installation of Go and NodeJS is out of the scope of this document, please follow the official documentation for Go, NodeJS and Yarn, to build this project you have to install Go >= v1.13. After the installation of the required tools you need to get the sources:
git clone https://github.com/owncloud/ocis-hello.git
cd ocis-hello
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
and respectively our package.json
.
yarn install
yarn build
The above commands will install the required build dependencies and build the whole frontend bundle. This bundle will we embeded into the binary later on.
make generate
make build
The above commands will embed the frontend bundle into the binary. Finally you should have the binary within the bin/
folder now, give it a try with ./bin/ocis-hello -h
to see all available options.