Skip to content

Latest commit

 

History

History
25 lines (19 loc) · 628 Bytes

development.md

File metadata and controls

25 lines (19 loc) · 628 Bytes

Setup

If you are new to Go, it is recommended to work through the How to Write Go Code tutorial, which will ensure your Go environment is configured.

Clone this repo into your Go workspace:

cd $GOPATH/src
mkdir -p github.com/observiq && cd github.com/observiq
git clone [email protected]:observiq/stanza.git
cd $GOPATH/src/github.com/observiq/stanza

Building

To build the agent for another OS, run one of the following:

make build // local OS
make build-windows-amd64
make build-linux-amd64
make build-darwin-amd64

Running Tests

Tests can be run with make test.