Skip to content

Latest commit

 

History

History
32 lines (21 loc) · 369 Bytes

HACKING.md

File metadata and controls

32 lines (21 loc) · 369 Bytes

Hacking

Get the code

$ git clone https://github.com/ketch-com/orlop
$ cd orlop/

Getting the development dependencies

go get -u ./...

Building

You can build this project using Go:

go build ./...

Updating dependencies

To update the dependencies, run the following:

rm go.sum
go get -u -t ./...